We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6109488 commit 95e6fd6Copy full SHA for 95e6fd6
1 file changed
apm.c
@@ -611,6 +611,7 @@ void extract_data(TSRMLS_D)
611
zend_string *tmpstr;
612
tmpstr = zend_print_zval_r_to_str(tmp, 0);
613
smart_str_append(&APM_RD(cookies), tmpstr);
614
+ zend_string_release(tmpstr);
615
#else
616
APM_G(buffer) = &APM_RD(cookies);
617
zend_print_zval_r_ex(apm_write, tmp, 0 TSRMLS_CC);
@@ -627,6 +628,7 @@ void extract_data(TSRMLS_D)
627
628
629
630
smart_str_append(&APM_RD(post_vars), tmpstr);
631
632
633
APM_G(buffer) = &APM_RD(post_vars);
634
0 commit comments