ipfix: use ws_strtoi function.

Change-Id: Icca32f714381166e505932958b87f9ffab62aa1d
Reviewed-on: https://code.wireshark.org/review/17557
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Dario Lombardo 2016-09-07 14:39:46 +02:00 committed by Guy Harris
parent d5826f10bb
commit faa04b1318
1 changed files with 3 additions and 1 deletions

View File

@ -67,6 +67,8 @@
#include "file_wrappers.h"
#include "ipfix.h"
#include <wsutil/strtoi.h>
#if 0
#define ipfix_debug(...) g_warning(__VA_ARGS__)
#else
@ -192,7 +194,7 @@ ipfix_open(wtap *wth, int *err, gchar **err_info)
/* number of records to scan before deciding if this really is IPFIX */
if ((s = getenv("IPFIX_RECORDS_TO_CHECK")) != NULL) {
if ((n = atoi(s)) > 0 && n < 101) {
if (ws_strtoi32(s, NULL, &n) && n > 0 && n < 101) {
records_for_ipfix_check = n;
}
}