Skip to content

Commit

Permalink
Fixing 'uninitialized variable' compiler error.
Browse files Browse the repository at this point in the history
  • Loading branch information
nateabele committed Sep 28, 2013
1 parent 5e179e9 commit ba19e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runkit_sandbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -1612,7 +1612,7 @@ PHP_FUNCTION(runkit_sandbox_output_handler)
zval *sandbox;
zval *callback = NULL;
php_runkit_sandbox_object *objval;
char *name;
char *name = NULL;
int callback_is_true = 0;

if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|z", &sandbox, php_runkit_sandbox_class_entry, &callback) == FAILURE) {
Expand Down

0 comments on commit ba19e42

Please sign in to comment.