]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[trac4001] Move the clearing of errno per review comments
authorShawn Routhier <sar@isc.org>
Tue, 22 Sep 2015 15:54:30 +0000 (08:54 -0700)
committerShawn Routhier <sar@isc.org>
Tue, 22 Sep 2015 15:54:30 +0000 (08:54 -0700)
src/hooks/dhcp/user_chk/load_unload.cc

index 20ed539ce07b76017257d338cd162b1f52166d0a..c29a4f986bb706eb5cc6c02b13aace9c6003d60e 100644 (file)
@@ -75,9 +75,6 @@ int load(LibraryHandle&) {
     // non-zero indicates an error.
     int ret_val = 0;
 
-    // zero out the errno to be safe
-    errno = 0;
-
     try {
         // Instantiate the registry.
         user_registry.reset(new UserRegistry());
@@ -91,6 +88,9 @@ int load(LibraryHandle&) {
         // Do an initial load of the registry.
         user_registry->refresh();
 
+        // zero out the errno to be safe
+        errno = 0;
+
         // Open up the output file for user_chk results.
         user_chk_output.open(user_chk_output_fname,
                      std::fstream::out | std::fstream::app);