Skip to content

Commit d2ee9d1

Browse files
committed
Don't bail out on null callback.
1 parent 4302bc0 commit d2ee9d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php_zookeeper.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ static PHP_METHOD(Zookeeper, exists)
336336
int status = ZOK;
337337
ZK_METHOD_INIT_VARS;
338338

339-
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|f", &path, &path_len, &fci,
339+
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|f!", &path, &path_len, &fci,
340340
&fcc) == FAILURE) {
341341
return;
342342
}

0 commit comments

Comments
 (0)