Skip to content

Commit 4b9db65

Browse files
committed
Fix broken fix for #80239
No idea why that `git am` failed that badly.
1 parent 5941b30 commit 4b9db65

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
@@ -2305,7 +2305,6 @@ PHP_FUNCTION(imap_subscribe)
23052305
} else {
23062306
RETURN_FALSE;
23072307
}
2308-
mail_free_address(&addr);
23092308
}
23102309
/* }}} */
23112310

@@ -2693,8 +2692,9 @@ PHP_FUNCTION(imap_rfc822_write_address)
26932692
if (string) {
26942693
RETVAL_STR(string);
26952694
} else {
2696-
RETURN_FALSE;
2695+
RETVAL_FALSE;
26972696
}
2697+
mail_free_address(&addr);
26982698
}
26992699
/* }}} */
27002700

0 commit comments

Comments
 (0)