Move initialization of char *priority up to prevent freeing an uninitialized pointer.

This commit is contained in:
Guus Sliepen 2012-02-21 11:39:21 +01:00
parent 8420a0c8bd
commit 7d76e28759

View 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) {