Skip to content

Commit

Permalink
Fix uninitialized flag when JIT is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
weltling committed Nov 14, 2017
1 parent 0a45e8f commit 3c241ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/pcre/php_pcre.c
Original file line number Diff line number Diff line change
Expand Up @@ -2537,7 +2537,7 @@ PHPAPI void php_pcre_grep_impl(pcre_cache_entry *pce, zval *input, zval *return
int *offsets; /* Array of subpattern offsets */
int size_offsets; /* Size of the offsets array */
int count = 0; /* Count of matched subpatterns */
int no_utf_check; /* Execution options */
int no_utf_check = 0; /* Execution options */
zend_string *string_key;
zend_ulong num_key;
zend_bool invert; /* Whether to return non-matching
Expand Down

0 comments on commit 3c241ea

Please sign in to comment.