summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--raptorsmiface/libraptorsmiface.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/raptorsmiface/libraptorsmiface.c b/raptorsmiface/libraptorsmiface.c
index d12dffb2..909a27b1 100644
--- a/raptorsmiface/libraptorsmiface.c
+++ b/raptorsmiface/libraptorsmiface.c
@@ -279,6 +279,7 @@ char raptor_sm_deallocate_session(char* username) {
asprintf(&command_string, "ssh root@%s \'ps -p %d | grep %d\'", ip, serverpid, serverpid);
FILE *fp;
char output[1024];
+ memset(output, 0, sizeof(output));
// Open the command for reading
fp = popen(command_string, "r");
if (fp == NULL) {
@@ -764,6 +765,7 @@ pid_t raptor_sm_run_remote_server(char* username, char *const argv[], char* dbfi
asprintf(&command_string, "ssh root@%s \'ps -p %d | grep %d\'", ip, ret, ret);
FILE *fp;
char output[1024];
+ memset(output, 0, sizeof(output));
// Open the command for reading
fp = popen(command_string, "r");
if (fp == NULL) {
@@ -834,6 +836,7 @@ pid_t raptor_sm_run_remote_server(char* username, char *const argv[], char* dbfi
FILE *fp;
char output[1024];
+ memset(output, 0, sizeof(output));
// Open the command for reading
fp = popen(command_string, "r");