Skip to content

Fix #54043: Remove inconsitency of internal exceptions and user defined exceptions #365

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 30 additions & 26 deletions main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -943,6 +943,7 @@ static void php_error_cb(int type, const char *error_filename, const uint error_
char *buffer;
int buffer_len, display;
TSRMLS_FETCH();
int thrownexception = 0;

buffer_len = vspprintf(&buffer, PG(log_errors_max_len), format, args);

Expand All @@ -962,31 +963,6 @@ static void php_error_cb(int type, const char *error_filename, const uint error_
display = 1;
}

/* store the error if it has changed */
if (display) {
#ifdef ZEND_SIGNALS
HANDLE_BLOCK_INTERRUPTIONS();
#endif
if (PG(last_error_message)) {
free(PG(last_error_message));
PG(last_error_message) = NULL;
}
if (PG(last_error_file)) {
free(PG(last_error_file));
PG(last_error_file) = NULL;
}
#ifdef ZEND_SIGNALS
HANDLE_UNBLOCK_INTERRUPTIONS();
#endif
if (!error_filename) {
error_filename = "Unknown";
}
PG(last_error_type) = type;
PG(last_error_message) = strdup(buffer);
PG(last_error_file) = strdup(error_filename);
PG(last_error_lineno) = error_lineno;
}

/* according to error handling mode, suppress error, throw exception or show it */
if (EG(error_handling) != EH_NORMAL) {
switch (type) {
Expand All @@ -1012,12 +988,40 @@ static void php_error_cb(int type, const char *error_filename, const uint error_
*/
if (EG(error_handling) == EH_THROW && !EG(exception)) {
zend_throw_error_exception(EG(exception_class), buffer, 0, type TSRMLS_CC);
thrownexception = 1;
}
efree(buffer);
return;
break;
}
}

/* store the error if it has changed */
if (display && !thrownexception ) {
#ifdef ZEND_SIGNALS
HANDLE_BLOCK_INTERRUPTIONS();
#endif
if (PG(last_error_message)) {
free(PG(last_error_message));
PG(last_error_message) = NULL;
}
if (PG(last_error_file)) {
free(PG(last_error_file));
PG(last_error_file) = NULL;
}
#ifdef ZEND_SIGNALS
HANDLE_UNBLOCK_INTERRUPTIONS();
#endif
if (!error_filename) {
error_filename = "Unknown";
}
PG(last_error_type) = type;
PG(last_error_message) = strdup(buffer);
PG(last_error_file) = strdup(error_filename);
PG(last_error_lineno) = error_lineno;
} else if( thrownexception ) {
return;
}

/* display/log the error if necessary */
if (display && (EG(error_reporting) & type || (type & E_CORE))
&& (PG(log_errors) || PG(display_errors) || (!module_initialized))) {
Expand Down