aboutsummaryrefslogtreecommitdiffstats
path: root/pcapio.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-21 17:07:18 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-21 17:07:18 +0000
commit7be601f344cc7455cd340370bc236445147fd7a3 (patch)
treeaedad3e2bb24904561ec528cdc6440106a717949 /pcapio.c
parent4fc161b16e881da975412729935adc8cd963c60c (diff)
Don't close file handle if a file write error; (caller does the close)
Fixes "USE_AFTER_FREE" defect reported by Coverity Prevent. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36226 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'pcapio.c')
-rw-r--r--pcapio.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/pcapio.c b/pcapio.c
index 55df359472..c137515ae8 100644
--- a/pcapio.c
+++ b/pcapio.c
@@ -66,7 +66,7 @@
is a byte-swapped version of that.
PCAP_NSEC_MAGIC is for Ulf Lamping's modified "libpcap" format,
- which uses the same common file format as PCAP_MAGIC, but the
+ which uses the same common file format as PCAP_MAGIC, but the
timestamps are saved in nanosecond resolution instead of microseconds.
PCAP_SWAPPED_NSEC_MAGIC is a byte-swapped version of that. */
#define PCAP_MAGIC 0xa1b2c3d4
@@ -182,7 +182,6 @@ struct option {
} else { \
*error_pointer = 0; \
} \
- fclose(file_pointer); \
return FALSE; \
} \
written_length += (long)nwritten; \
@@ -277,7 +276,7 @@ libpcap_write_session_header_block(FILE *fp,
struct option option;
guint32 block_total_length;
const guint32 padding = 0;
-
+
block_total_length = sizeof(struct shb) +
sizeof(guint32);
if ((strlen(appname) > 0) && (strlen(appname) < G_MAXUINT16)) {
@@ -328,7 +327,7 @@ libpcap_write_interface_description_block(FILE *fp,
block_total_length = sizeof(struct idb) + sizeof(guint32);
if ((strlen(name) > 0) && (strlen(name) < G_MAXUINT16)) {
- block_total_length += sizeof(struct option) +
+ block_total_length += sizeof(struct option) +
(guint16)(ADD_PADDING(strlen(name) + 1));
}
if ((strlen(filter) > 0) && (strlen(name) < G_MAXUINT16)) {
@@ -433,7 +432,7 @@ libpcap_write_interface_statistics_block(FILE *fp,
guint64 timestamp;
guint64 counter;
gboolean stats_retrieved;
-
+
#ifdef _WIN32
/*
* Current time, represented as 100-nanosecond intervals since
@@ -506,7 +505,7 @@ libpcap_write_interface_statistics_block(FILE *fp,
WRITE_DATA(fp, &option, sizeof(struct option), *bytes_written, err);
}
WRITE_DATA(fp, &block_total_length, sizeof(guint32), *bytes_written, err);
-
+
return TRUE;
}