]> git.saurik.com Git - wxWidgets.git/commitdiff
NULL shouldn't be used in test programs
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 14 Oct 1999 15:18:39 +0000 (15:18 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 14 Oct 1999 15:18:39 +0000 (15:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3992 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure
configure.in

index dceed7f8982c2f84c21b1272ab7e4b197a7459ca..2b07adf545660aa71d90e004f1d22edc325cb8a0 100755 (executable)
--- a/configure
+++ b/configure
@@ -11121,7 +11121,7 @@ echo "configure:11119: checking the type of the third argument of getsockname" >
 #include "confdefs.h"
 #include <sys/socket.h>
 int main() {
-socklen_t len; getsockname(0, NULL, &len);
+socklen_t len; getsockname(0, 0, &len);
 ; return 0; }
 EOF
 if { (eval echo configure:11128: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
@@ -11139,7 +11139,7 @@ else
 #include "confdefs.h"
 #include <sys/socket.h>
 int main() {
-size_t len; getsockname(0, NULL, &len);
+size_t len; getsockname(0, 0, &len);
 ; return 0; }
 EOF
 if { (eval echo configure:11146: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
@@ -11157,7 +11157,7 @@ else
 #include "confdefs.h"
 #include <sys/socket.h>
 int main() {
-int len; getsockname(0, NULL, &len);
+int len; getsockname(0, 0, &len);
 ; return 0; }
 EOF
 if { (eval echo configure:11164: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
index a8fe1bca06a923b1e01da6df899cf72ada7e172b..71acf22cbf122ec0a150f3fb539e85a8deb43681 100644 (file)
@@ -2372,15 +2372,15 @@ if test "$wxUSE_SOCKETS" = "yes"; then
     AC_MSG_CHECKING(the type of the third argument of getsockname)
     AC_TRY_COMPILE(
         [#include <sys/socket.h>],
-        [socklen_t len; getsockname(0, NULL, &len);],
+        [socklen_t len; getsockname(0, 0, &len);],
         AC_DEFINE(SOCKLEN_T, socklen_t) AC_MSG_RESULT(socklen_t),
            AC_TRY_COMPILE(
             [#include <sys/socket.h>],
-            [size_t len; getsockname(0, NULL, &len);],
+            [size_t len; getsockname(0, 0, &len);],
             AC_DEFINE(SOCKLEN_T, size_t) AC_MSG_RESULT(size_t),
             AC_TRY_COMPILE(
                 [#include <sys/socket.h>],
-                [int len; getsockname(0, NULL, &len);],
+                [int len; getsockname(0, 0, &len);],
                 AC_DEFINE(SOCKLEN_T, int) AC_MSG_RESULT(int),
             AC_MSG_RESULT(unknown)
         )