Move initialization of char *priority up to prevent freeing an uninitialized pointer.
authorGuus Sliepen <guus@tinc-vpn.org>
Tue, 21 Feb 2012 10:39:21 +0000 (11:39 +0100)
committerGuus Sliepen <guus@tinc-vpn.org>
Tue, 21 Feb 2012 10:39:21 +0000 (11:39 +0100)
src/tincd.c

index f7b956fea124301851d63ab2b1b2565ec7e3557b..c5f4c1035836ab83209297e9fbf6c11cb5fc8018 100644 (file)
@@ -586,6 +586,7 @@ int main2(int argc, char **argv) {
        InitializeCriticalSection(&mutex);
        EnterCriticalSection(&mutex);
 #endif
+        char *priority = NULL;
 
        if(!detach())
                return 1;
@@ -612,8 +613,6 @@ int main2(int argc, char **argv) {
 
        /* Change process priority */
 
-        char *priority = NULL;
-
         if(get_config_string(lookup_config(config_tree, "ProcessPriority"), &priority)) {
                 if(!strcasecmp(priority, "Normal")) {
                         if (setpriority(NORMAL_PRIORITY_CLASS) != 0) {