summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bss_file.c
diff options
context:
space:
mode:
authorsimon <simon@FreeBSD.org>2010-02-28 18:49:43 +0000
committersimon <simon@FreeBSD.org>2010-02-28 18:49:43 +0000
commitcdb6eef1f013e22a10ab5f5829dcdc3b5e32d385 (patch)
tree21770f10e7f26d05fc9b0fa96a7b6d7b107552c5 /crypto/bio/bss_file.c
parent3bc8c7595d6f805f614ed860868465e3c1d3ee2b (diff)
downloadFreeBSD-src-cdb6eef1f013e22a10ab5f5829dcdc3b5e32d385.zip
FreeBSD-src-cdb6eef1f013e22a10ab5f5829dcdc3b5e32d385.tar.gz
Import OpenSSL 0.9.8m.
Diffstat (limited to 'crypto/bio/bss_file.c')
-rw-r--r--crypto/bio/bss_file.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/crypto/bio/bss_file.c b/crypto/bio/bss_file.c
index 9ad46fa..62c1073 100644
--- a/crypto/bio/bss_file.c
+++ b/crypto/bio/bss_file.c
@@ -404,11 +404,18 @@ static int MS_CALLBACK file_gets(BIO *bp, char *buf, int size)
buf[0]='\0';
if (bp->flags&BIO_FLAGS_UPLINK)
- UP_fgets(buf,size,bp->ptr);
+ {
+ if (!UP_fgets(buf,size,bp->ptr))
+ goto err;
+ }
else
- fgets(buf,size,(FILE *)bp->ptr);
+ {
+ if (!fgets(buf,size,(FILE *)bp->ptr))
+ goto err;
+ }
if (buf[0] != '\0')
ret=strlen(buf);
+ err:
return(ret);
}
OpenPOWER on IntegriCloud