Skip to content

Commit 1cf6da6

Browse files
authored
ext/standard: Fix #undef directive after cache_request_parse_body_options (php#22457)
`CACHE_OPTION` should be typo, and it should instead be `CHECK_OPTION`.
1 parent 08c6eca commit 1cf6da6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/standard/http.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ static zend_result cache_request_parse_body_options(HashTable *options)
317317
return FAILURE;
318318
} ZEND_HASH_FOREACH_END();
319319

320-
#undef CACHE_OPTION
320+
#undef CHECK_OPTION
321321

322322
return SUCCESS;
323323
}

0 commit comments

Comments
 (0)