Skip to content

Commit bc214c8

Browse files
committed
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix broken fix for #80239
2 parents 7899ac4 + 4b9db65 commit bc214c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/imap/php_imap.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2321,7 +2321,6 @@ PHP_FUNCTION(imap_subscribe)
23212321
} else {
23222322
RETURN_FALSE;
23232323
}
2324-
mail_free_address(&addr);
23252324
}
23262325
/* }}} */
23272326

@@ -2711,8 +2710,9 @@ PHP_FUNCTION(imap_rfc822_write_address)
27112710
if (string) {
27122711
RETVAL_STR(string);
27132712
} else {
2714-
RETURN_FALSE;
2713+
RETVAL_FALSE;
27152714
}
2715+
mail_free_address(&addr);
27162716
}
27172717
/* }}} */
27182718

0 commit comments

Comments
 (0)