[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:
Jim Monte 2019-06-01 17:54:48 +02:00 committed by Holger Vogt
parent a1ddfa3f82
commit f086fd3bef
1 changed files with 2 additions and 2 deletions

View File

@ -340,9 +340,9 @@ measure_extract_variables(char *line)
}
}
}
} while(line && *line);
} while (*line);
return (status);
return status;
}