[PATCH #61] Removed unnecessary check for null pointer. There would have
been several access violations before the check if it were invalid.
This commit is contained in:
parent
a1ddfa3f82
commit
f086fd3bef
|
|
@ -340,9 +340,9 @@ measure_extract_variables(char *line)
|
|||
}
|
||||
}
|
||||
}
|
||||
} while(line && *line);
|
||||
} while (*line);
|
||||
|
||||
return (status);
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue