From ef36ce1008660a44182aeaad83a9f5f2d4c6cc18 Mon Sep 17 00:00:00 2001 From: Shawn Routhier Date: Tue, 22 Sep 2015 08:54:30 -0700 Subject: [PATCH] [trac4001] Move the clearing of errno per review comments --- src/hooks/dhcp/user_chk/load_unload.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hooks/dhcp/user_chk/load_unload.cc b/src/hooks/dhcp/user_chk/load_unload.cc index 20ed539ce0..c29a4f986b 100644 --- a/src/hooks/dhcp/user_chk/load_unload.cc +++ b/src/hooks/dhcp/user_chk/load_unload.cc @@ -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); -- 2.47.3