Skip to content

Commit

Permalink
Fix [-Wincompatible-pointer-types] warning
Browse files Browse the repository at this point in the history
  • Loading branch information
remicollet authored and bd808 committed Mar 12, 2023
1 parent 4702575 commit e7bffc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse.c
Expand Up @@ -531,7 +531,7 @@ void handle_sequence (parser_state_t *state, zval *retval) {
/* apply callbacks to the collected node */
if (Y_FILTER_FAILURE == apply_filter(
retval, src_event, state->callbacks)) {
zval_ptr_dtor(&retval);
zval_ptr_dtor(retval);
ZVAL_UNDEF(retval);
goto done;
//TODO Sean-Der
Expand Down

0 comments on commit e7bffc0

Please sign in to comment.