Skip to content

Commit 6b03469

Browse files
committed
Fixed missing efree.
1 parent 9dd844d commit 6b03469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ PHPAPI int redis_sock_read_multibulk_reply(INTERNAL_FUNCTION_PARAMETERS, RedisSo
864864

865865
*return_value = *z_multi_result;
866866
//zval_copy_ctor(return_value);
867-
// efree(z_multi_result);
867+
efree(z_multi_result);
868868
return 0;
869869
}
870870

0 commit comments

Comments
 (0)