aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/pcapng.c
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2021-05-24 00:46:43 +0100
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-06-06 20:05:26 +0000
commit4aff36d501400552d7df59473db17ef7add8b11c (patch)
tree05518b1962382e2c4edf5935e9c4284747a0b302 /wiretap/pcapng.c
parentef0f022f8629009daf7c31e204b9d65b1805f6e4 (diff)
Replace g_assert() with ws_assert() in places
Diffstat (limited to 'wiretap/pcapng.c')
-rw-r--r--wiretap/pcapng.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/wiretap/pcapng.c b/wiretap/pcapng.c
index f8472f98d0..6e9d5bd675 100644
--- a/wiretap/pcapng.c
+++ b/wiretap/pcapng.c
@@ -26,6 +26,7 @@
#include <wsutil/wslog.h>
#include <wsutil/strtoi.h>
#include <wsutil/glib-compat.h>
+#include <wsutil/ws_assert.h>
#include "wtap-int.h"
#include "file_wrappers.h"
@@ -412,7 +413,7 @@ static GHashTable *option_handlers[NUM_BT_INDICES];
static gboolean
get_block_type_index(guint block_type, guint *bt_index)
{
- g_assert(bt_index);
+ ws_assert(bt_index);
switch (block_type) {
@@ -3258,7 +3259,7 @@ pcapng_seek_read(wtap *wth, gint64 seek_off,
* First, make sure we have at least one section; if we don't, that's
* an internal error.
*/
- g_assert(pcapng->sections->len >= 1);
+ ws_assert(pcapng->sections->len >= 1);
/*
* Now scan backwards through the array to find the first section
@@ -3278,7 +3279,7 @@ pcapng_seek_read(wtap *wth, gint64 seek_off,
* If that's section 0, something's wrong; that section should
* have an offset of 0.
*/
- g_assert(section_number != 0);
+ ws_assert(section_number != 0);
section_number--;
}
@@ -4844,7 +4845,7 @@ static void write_wtap_idb_option(wtap_block_t block _U_, guint option_id, wtap_
break;
default:
- g_assert_not_reached();
+ ws_assert_not_reached();
return;
}