[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
194e6d02e9
commit
aaf7af790b
|
|
@ -340,9 +340,9 @@ measure_extract_variables(char *line)
|
|||
}
|
||||
}
|
||||
}
|
||||
} while(line && *line);
|
||||
} while (*line);
|
||||
|
||||
return (status);
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue