Skip to content
Snippets Groups Projects
Commit 2582ecc7 authored by Brad King's avatar Brad King
Browse files

COMP: Fixed uninitialized variable.

parent 6a526798
No related branches found
No related tags found
No related merge requests found
......@@ -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)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment