-
Notifications
You must be signed in to change notification settings - Fork 7.9k
sapi/apache2handler: function using char * to const char *. #14925
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -313,15 +313,15 @@ PHP_FUNCTION(apache_getenv) | |
} | ||
/* }}} */ | ||
|
||
static char *php_apache_get_version(void) | ||
static const char *php_apache_get_version(void) | ||
{ | ||
return (char *) ap_get_server_banner(); | ||
return ap_get_server_banner(); | ||
} | ||
|
||
/* {{{ Fetch Apache version */ | ||
PHP_FUNCTION(apache_get_version) | ||
{ | ||
char *apv = php_apache_get_version(); | ||
const char *apv = php_apache_get_version(); | ||
|
||
if (apv && *apv) { | ||
RETURN_STRING(apv); | ||
|
@@ -340,7 +340,7 @@ PHP_FUNCTION(apache_get_modules) | |
array_init(return_value); | ||
|
||
for (n = 0; ap_loaded_modules[n]; ++n) { | ||
char *s = (char *) ap_loaded_modules[n]->name; | ||
const char *s = ap_loaded_modules[n]->name; | ||
if ((p = strchr(s, '.'))) { | ||
add_next_index_stringl(return_value, s, (p - s)); | ||
} else { | ||
|
@@ -352,7 +352,7 @@ PHP_FUNCTION(apache_get_modules) | |
|
||
PHP_MINFO_FUNCTION(apache) | ||
{ | ||
char *apv = php_apache_get_version(); | ||
const char *apv = php_apache_get_version(); | ||
smart_str tmp1 = {0}; | ||
char tmp[1024]; | ||
int n, max_requests; | ||
|
@@ -363,21 +363,20 @@ PHP_MINFO_FUNCTION(apache) | |
#endif | ||
|
||
for (n = 0; ap_loaded_modules[n]; ++n) { | ||
char *s = (char *) ap_loaded_modules[n]->name; | ||
const char *s = ap_loaded_modules[n]->name; | ||
if (n > 0) { | ||
smart_str_appendc(&tmp1, ' '); | ||
} | ||
if ((p = strchr(s, '.'))) { | ||
smart_str_appendl(&tmp1, s, (p - s)); | ||
} else { | ||
smart_str_appends(&tmp1, s); | ||
} | ||
smart_str_appendc(&tmp1, ' '); | ||
} | ||
if (tmp1.s) { | ||
if (tmp1.s->len > 0) { | ||
tmp1.s->val[tmp1.s->len - 1] = '\0'; | ||
} else { | ||
tmp1.s->val[0] = '\0'; | ||
} | ||
if (!tmp1.s) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This seems like a reasonable addition |
||
smart_str_appendc(&tmp1, '/'); | ||
} | ||
smart_str_0(&tmp1); | ||
|
||
php_info_print_table_start(); | ||
if (apv && *apv) { | ||
|
@@ -409,7 +408,7 @@ PHP_MINFO_FUNCTION(apache) | |
|
||
php_info_print_table_row(2, "Virtual Server", (serv->is_virtual ? "Yes" : "No")); | ||
php_info_print_table_row(2, "Server Root", ap_server_root); | ||
php_info_print_table_row(2, "Loaded Modules", tmp1.s->val); | ||
php_info_print_table_row(2, "Loaded Modules", ZSTR_VAL(tmp1.s)); | ||
|
||
smart_str_free(&tmp1); | ||
php_info_print_table_end(); | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that we now have a trailing ' '. Although this code looks dubious to begin with (len > 0 check but still setting index 0 🤔 ).
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it was unconditionally used regardless below for displaying
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lol, indeed, even more bizarre... That said, it's maybe best to keep the behaviour that strips the last ' '.