g_fprintf() & g_vfprintf() should not be used....
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 24 Feb 2012 19:02:28 +0000 (19:02 +0000)
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 24 Feb 2012 19:02:28 +0000 (19:02 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41181 f5534014-38df-0310-8fa8-9805f1628bb7

tools/checkAPIs.pl

index fd469eb5cb0e177c4b7a3e89799aede6506c3d4f..60a6d3ef9c949885b95e4e0924a02a88483fd51d 100755 (executable)
@@ -68,6 +68,10 @@ my %APIs = (
                 'strndup',
                 # Windows doesn't have this; use g_ascii_strtoull() instead
                 'strtoull',
+                ### non-portable: fails on Windows Wireshark built with VC newer than VC6
+                # See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6695#c2
+                'g_fprintf',
+                'g_vfprintf',
                 ### non-ANSI C
                 # use memset, memcpy, memcmp instead of these:
                 'bzero',