Skip to content

Commit cc46d1f

Browse files
committed
Try to fix Windows build again
1 parent 441d99b commit cc46d1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/uri/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ AC_DEFINE("URI_NO_UNICODE", 1, "Define to 1 for disabling unicode support of uri
55
ADD_FLAG("CFLAGS_URI", "/D URI_STATIC_BUILD");
66

77
ADD_EXTENSION_DEP('uri', 'lexbor');
8-
ADD_SOURCES("ext/uri/uriparser/src", "UriCommon.c UriCompare.c UriEscape.c UriFile.c UriIp4.c UriIp4Base.c UriMemory.c UriNormalize.c UriNormalizeBase.c UriParse.c UriParseBase.c UriQuery.c UriRecompose.c UriShorten.c", "uri");
8+
ADD_SOURCES("ext/uri/uriparser/src", "UriCommon.c UriCompare.c UriEscape.c UriFile.c UriIp4.c UriIp4Base.c UriMemory.c UriNormalize.c UriNormalizeBase.c UriParse.c UriParseBase.c UriQuery.c UriRecompose.c UriResolve.c UriShorten.c", "uri");
99
PHP_INSTALL_HEADERS("ext/uri", "php_lexbor.h php_uri.h php_uri_common.h php_uriparser.h uriparser/src uriparser/include");

ext/uri/uriparser/src/UriCommon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ UriBool URI_FUNC(CopyRange)(URI_TYPE(TextRange) * destRange,
154154

155155

156156

157-
URI_INLINE void URI_FUNC(PreventLeakage)(URI_TYPE(Uri) * uri,
157+
void URI_FUNC(PreventLeakage)(URI_TYPE(Uri) * uri,
158158
unsigned int revertMask, UriMemoryManager * memory) {
159159
if (revertMask & URI_NORMALIZE_SCHEME) {
160160
/* NOTE: A scheme cannot be the empty string

0 commit comments

Comments
 (0)