aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/rlc_lte_stat_dlg.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gtk/rlc_lte_stat_dlg.c')
-rw-r--r--ui/gtk/rlc_lte_stat_dlg.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/ui/gtk/rlc_lte_stat_dlg.c b/ui/gtk/rlc_lte_stat_dlg.c
index 4bb6f87477..16939fa10e 100644
--- a/ui/gtk/rlc_lte_stat_dlg.c
+++ b/ui/gtk/rlc_lte_stat_dlg.c
@@ -41,6 +41,8 @@
#include "ui/simple_dialog.h"
#include <epan/stat_groups.h>
+#include <wsutil/strtoi.h>
+
#include "ui/gtk/dlg_utils.h"
#include "ui/gtk/gui_stat_menu.h"
#include "ui/gtk/tap_param_dlg.h"
@@ -1155,7 +1157,7 @@ static void ul_filter_clicked(GtkWindow *win _U_, rlc_lte_stat_t* hs)
/* Read SN to filter on (if present) */
sn_string = gtk_entry_get_text(GTK_ENTRY(hs->sn_filter_te));
if (strlen(sn_string) > 0) {
- sn = atoi(sn_string);
+ ws_strtoi32(sn_string, NULL, &sn);
}
if (!get_channel_selection(hs, &ueid, &rlcMode, &channelType, &channelId)) {
@@ -1184,7 +1186,7 @@ static void dl_filter_clicked(GtkWindow *win _U_, rlc_lte_stat_t* hs)
/* Read SN to filter on (if present) */
sn_string = gtk_entry_get_text(GTK_ENTRY(hs->sn_filter_te));
if (strlen(sn_string) > 0) {
- sn = atoi(sn_string);
+ ws_strtoi32(sn_string, NULL, &sn);
}
if (!get_channel_selection(hs, &ueid, &rlcMode, &channelType, &channelId)) {
@@ -1213,7 +1215,7 @@ static void uldl_filter_clicked(GtkWindow *win _U_, rlc_lte_stat_t* hs)
/* Read SN to filter on (if present) */
sn_string = gtk_entry_get_text(GTK_ENTRY(hs->sn_filter_te));
if (strlen(sn_string) > 0) {
- sn = atoi(sn_string);
+ ws_strtoi32(sn_string, NULL, &sn);
}
if (!get_channel_selection(hs, &ueid, &rlcMode, &channelType, &channelId)) {