Browse Source

[PATCH #61] Removed unnecessary check for null pointer. There would have

been several access violations before the check if it were invalid.
pre-master-46
Jim Monte 7 years ago
committed by Holger Vogt
parent
commit
f086fd3bef
  1. 4
      src/frontend/com_measure2.c

4
src/frontend/com_measure2.c

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

Loading…
Cancel
Save