summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/libc
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-12-07 06:49:32 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-12-07 06:49:32 +0000
commita1399ba8cd69061090979b2a9bdc5b02c2814d77 (patch)
tree6240443577dea4e21f92c2b396a4945033674339 /cpukit/libnetworking/libc
parent2011-12-07 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-a1399ba8cd69061090979b2a9bdc5b02c2814d77.tar.bz2
2011-12-07 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1983/networking * libnetworking/libc/gethostbyht.c (gethostent_r): Abort if (!hostf).
Diffstat (limited to 'cpukit/libnetworking/libc')
-rw-r--r--cpukit/libnetworking/libc/gethostbyht.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libnetworking/libc/gethostbyht.c b/cpukit/libnetworking/libc/gethostbyht.c
index 4228b1c8c8..17723d707b 100644
--- a/cpukit/libnetworking/libc/gethostbyht.c
+++ b/cpukit/libnetworking/libc/gethostbyht.c
@@ -223,7 +223,7 @@ struct hostent* gethostent_r(char* buf, int len)
int curlen;
- if (hostf<0) return 0;
+ if (!hostf) return 0;
fseek(hostf,0,SEEK_END);
curlen=ftell(hostf);
fseek(hostf,0,SEEK_SET);