Revert "Prevent crash if *line == NULL"

This reverts commit b72f9516ac.
This commit is contained in:
Holger Vogt 2023-06-13 20:02:27 +02:00
parent 216e5cb58b
commit 818bd19798
1 changed files with 0 additions and 3 deletions

View File

@ -31,9 +31,6 @@ INPgetTok(char **line, char **token, int gobble)
char *point;
int signstate;
if (!*line)
return (E_PARMVAL);
/* scan along throwing away garbage characters until end of line
or a separation char is found */
for (point = *line; *point != '\0'; point++) {