summaryrefslogtreecommitdiffstats
path: root/plugins/popen.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/popen.c')
-rw-r--r--plugins/popen.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/popen.c b/plugins/popen.c
index f05fe97..94ad583 100644
--- a/plugins/popen.c
+++ b/plugins/popen.c
@@ -112,6 +112,7 @@ spopen (const char *cmdstring)
112 /* there cannot be more args than characters */ 112 /* there cannot be more args than characters */
113 argc = strlen (cmdstring) + 1; /* add 1 for NULL termination */ 113 argc = strlen (cmdstring) + 1; /* add 1 for NULL termination */
114 argv = malloc (sizeof(char*)*argc); 114 argv = malloc (sizeof(char*)*argc);
115
115 if (argv == NULL) { 116 if (argv == NULL) {
116 printf ("Could not malloc argv array in popen()\n"); 117 printf ("Could not malloc argv array in popen()\n");
117 return NULL; 118 return NULL;