Преглед изворни кода

Initialise hook command widget correctly.

We weren't explicitly zeroing the GUI widget for entering the hook command.
Iain Patterson пре 9 година
родитељ
комит
10c2787dcb
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      gui.cpp

+ 1 - 1
gui.cpp

@@ -354,7 +354,7 @@ static inline void set_hook_tab(int event_index, int action_index, bool changed)
     SetEnvironmentVariable(hook_name, cmd);
   }
   else {
-    GetEnvironmentVariable(hook_name, cmd, _countof(cmd));
+    if (! GetEnvironmentVariable(hook_name, cmd, _countof(cmd))) cmd[0] = _T('\0');
     SetDlgItemText(tablist[NSSM_TAB_HOOKS], IDC_HOOK, cmd);
   }
 }