Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
20d9bade
Commit
20d9bade
authored
Oct 19, 2007
by
Ken Thomases
Committed by
Alexandre Julliard
Oct 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Use 0 instead of NULL because NULL isn't defined.
parent
ffd78b15
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
configure
configure
+3
-3
configure.ac
configure.ac
+3
-3
No files found.
configure
View file @
20d9bade
...
...
@@ -17686,13 +17686,13 @@ int
main ()
{
char *name=
NULL
;
char *name=
0
;
struct hostent he;
struct hostent *result;
char *buf=
NULL
;
char *buf=
0
;
int bufsize=0;
int res,errnr;
char *addr=
NULL
;
char *addr=
0
;
int addrlen=0;
int addrtype=0;
res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
...
...
configure.ac
View file @
20d9bade
...
...
@@ -1363,13 +1363,13 @@ fi
AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style],
wine_cv_linux_gethostbyname_r_6,
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <netdb.h>]],[[
char *name=
NULL
;
char *name=
0
;
struct hostent he;
struct hostent *result;
char *buf=
NULL
;
char *buf=
0
;
int bufsize=0;
int res,errnr;
char *addr=
NULL
;
char *addr=
0
;
int addrlen=0;
int addrtype=0;
res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment