If eatspace() encounters EOF don't try to read again from stdin

This commit is contained in:
sin 2014-01-06 18:12:06 +00:00
parent ef57a609ca
commit 0511ecfd84
1 changed files with 6 additions and 4 deletions

10
xargs.c
View File

@ -15,7 +15,7 @@ enum {
static int inputc(void);
static void deinputc(int);
static void fillbuf(int);
static void eatspace(void);
static int eatspace(void);
static int parsequote(int);
static void parseescape(void);
static char *poparg(void);
@ -125,7 +125,7 @@ fillbuf(int ch)
argb[argbpos] = ch;
}
static void
static int
eatspace(void)
{
int ch;
@ -136,9 +136,10 @@ eatspace(void)
break;
default:
deinputc(ch);
return;
return ch;
}
}
return -1;
}
static int
@ -176,7 +177,8 @@ poparg(void)
int ch;
argbpos = 0;
eatspace();
if (eatspace() == -1)
return NULL;
while ((ch = inputc()) != EOF) {
switch (ch) {
case ' ': case '\t': case '\n':