aboutsummaryrefslogtreecommitdiffstats
path: root/tools/checkAPIs.pl
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-06-30 20:28:26 +0000
committerGerald Combs <gerald@wireshark.org>2009-06-30 20:28:26 +0000
commitc66d0e4a6ff9b743a95a835b665a4274b31b0c82 (patch)
tree273eab8f9f494076aca1f9977aa6567d8e1de694 /tools/checkAPIs.pl
parent6e2bd7cc03fa0539c852ce086b06ed7be87311c1 (diff)
Add assert and assert_perror to the 'abort' list.
svn path=/trunk/; revision=28896
Diffstat (limited to 'tools/checkAPIs.pl')
-rwxr-xr-xtools/checkAPIs.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index 45d7e42cbb..6671a76c63 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -180,6 +180,8 @@ my %APIs = (
# APIs that make the program exit. Dissectors shouldn't call these
'abort' => { 'count_errors' => 1, 'functions' => [
'abort',
+ 'assert',
+ 'assert_perror',
'exit',
'g_assert',
'g_error',