Prevent ignored return value warning
This commit is contained in:
parent
af8f2bb174
commit
e6714faffb
@ -403,11 +403,18 @@ static int MS_CALLBACK file_gets(BIO *bp, char *buf, int size)
|
|||||||
|
|
||||||
buf[0]='\0';
|
buf[0]='\0';
|
||||||
if (bp->flags&BIO_FLAGS_UPLINK)
|
if (bp->flags&BIO_FLAGS_UPLINK)
|
||||||
UP_fgets(buf,size,bp->ptr);
|
{
|
||||||
|
if (!UP_fgets(buf,size,bp->ptr))
|
||||||
|
goto err;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
fgets(buf,size,(FILE *)bp->ptr);
|
{
|
||||||
|
if (!fgets(buf,size,(FILE *)bp->ptr))
|
||||||
|
goto err;
|
||||||
|
}
|
||||||
if (buf[0] != '\0')
|
if (buf[0] != '\0')
|
||||||
ret=strlen(buf);
|
ret=strlen(buf);
|
||||||
|
err:
|
||||||
return(ret);
|
return(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user