ソースを参照

Initialise hook command widget correctly.

We weren't explicitly zeroing the GUI widget for entering the hook command.
Iain Patterson 7 年 前
コミット
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);
   }
 }