|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-04-18 11:03 UTC] rasmus
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 22 08:00:02 2025 UTC |
The function php3_fopen_url_wrapper()in fopen-wrapper.c does not initialize the fp variable when compiling for WIN32 although it is returned at line 532 (b6). The cause is the following code #if !(WIN32|WINNT) if ((fp = fdopen (SOCKETD, "r+")) == NULL) { free_url(resource); return(NULL); } #endif Why is this code ifdef'd out for WIN32 and where is fp supposed to get initialized?