aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/tnef.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-12-27 12:19:25 +0000
committerGuy Harris <guy@alum.mit.edu>2012-12-27 12:19:25 +0000
commit88e9d1c1e52c95317d59a1560285a9dd8c4ce7a0 (patch)
treefa21aca9e64f751847054d3aa54557afbaef56b0 /wiretap/tnef.c
parent12317316aed7e871b9537431d0c10013af3547db (diff)
Do not call wtap_file_read_unknown_bytes() or
wtap_file_read_expected_bytes() from an open routine - open routines are supposed to return -1 on error, 0 if the file doesn't appear to be a file of the specified type, or 1 if the file does appear to be a file of the specified type, but those macros will cause the caller to return FALSE on errors (so that, even if there's an I/O error, it reports "the file isn't a file of the specified type" rather than "we got an error trying to read the file"). When doing reads in an open routine before we've concluded that the file is probably of the right type, return 0, rather than -1, if we get WTAP_ERR_SHORT_READ - if we don't have enough data to check whether a file is of a given type, we should keep trying other types, not give up. For reads done *after* we've concluded the file is probably of the right type, if a read doesn't return the number of bytes we asked for, but returns an error of 0, return WTAP_ERR_SHORT_READ - the file is apparently cut short. For NetMon and NetXRay/Windows Sniffer files, use a #define for the magic number size, and use that for both magic numbers. svn path=/trunk/; revision=46803
Diffstat (limited to 'wiretap/tnef.c')
-rw-r--r--wiretap/tnef.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/wiretap/tnef.c b/wiretap/tnef.c
index 591a2f50dc..3afd1d49d6 100644
--- a/wiretap/tnef.c
+++ b/wiretap/tnef.c
@@ -109,7 +109,9 @@ int tnef_open(wtap *wth, int *err, gchar **err_info)
bytes_read = file_read(&magic, sizeof magic, wth->fh);
if (bytes_read != sizeof magic) {
*err = file_error(wth->fh, err_info);
- return (*err != 0) ? -1 : 0;
+ if (*err != 0 && *err != WTAP_ERR_SHORT_READ)
+ return -1;
+ return 0;
}
if (htolel(magic) != TNEF_SIGNATURE)