From 931233ee7b877c6cc773d32a0fbe6a87c2cea5a5 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 8 Jul 2005 09:05:11 -0400 Subject: [PATCH] COMP: Fixed uninitialized variable. --- Source/kwsys/testProcess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/testProcess.c b/Source/kwsys/testProcess.c index bbba94809..9f58e66c2 100644 --- a/Source/kwsys/testProcess.c +++ b/Source/kwsys/testProcess.c @@ -291,7 +291,7 @@ int runChild(const char* cmd[], int state, int exception, int value, int share, int output, int delay, double timeout, int poll, int repeat) { - int result; + int result = 1; kwsysProcess* kp = kwsysProcess_New(); if(!kp) {