Fixed buffer length adding a service via the GUI.
authorIain Patterson <me@iain.cx>
Tue, 12 Jun 2012 15:18:31 +0000 (16:18 +0100)
committerIain Patterson <me@iain.cx>
Tue, 12 Jun 2012 15:18:31 +0000 (16:18 +0100)
The path to the monitored application and the arguments to the
application are both allowed to be sufficiently large to fit in the
maximum allowable registry value size.  The GUI itself, however, was
restricting input fields to 256 characters.

gui.cpp
gui.h

diff --git a/gui.cpp b/gui.cpp
index 97c69a8..3d51236 100644 (file)
--- a/gui.cpp
+++ b/gui.cpp
@@ -63,9 +63,9 @@ int install(HWND window) {
   if (! window) return 1;\r
 \r
   /* Check parameters in the window */\r
-  char name[STRING_SIZE];\r
+  char name[VALUE_LENGTH];\r
   char exe[EXE_LENGTH];\r
-  char flags[STRING_SIZE];\r
+  char flags[VALUE_LENGTH];\r
 \r
   /* Get service name */\r
   if (! GetDlgItemText(window, IDC_NAME, name, sizeof(name))) {\r
@@ -120,7 +120,7 @@ int remove(HWND window) {
   if (! window) return 1;\r
 \r
   /* Check parameters in the window */\r
-  char name[STRING_SIZE];\r
+  char name[VALUE_LENGTH];\r
 \r
   /* Get service name */\r
   if (! GetDlgItemText(window, IDC_NAME, name, sizeof(name))) {\r
diff --git a/gui.h b/gui.h
index 4521c32..805635d 100644 (file)
--- a/gui.h
+++ b/gui.h
@@ -6,8 +6,6 @@
 #include <commctrl.h>\r
 #include "resource.h"\r
 \r
-#define STRING_SIZE 256\r
-\r
 int nssm_gui(int, char *);\r
 void centre_window(HWND);\r
 int install(HWND);\r