mirror of
https://github.com/php/php-src.git
synced 2025-01-18 09:43:36 +08:00
Remove unused local variables.
This commit is contained in:
parent
3ad50e1279
commit
596859eb44
@ -80,7 +80,7 @@ PHP_FUNCTION(time)
|
||||
void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm)
|
||||
{
|
||||
pval **arguments[7];
|
||||
struct tm *ta, tmbuf, *t1, *t2;
|
||||
struct tm *ta, tmbuf;
|
||||
time_t t, seconds;
|
||||
int i, gmadjust, arg_count = ZEND_NUM_ARGS();
|
||||
int is_dst = -1, val, chgsecs = 0;
|
||||
|
@ -589,7 +589,7 @@ int PostHeader(char *RPath, char *Subject, char *mailTo, char *xheaders, char *m
|
||||
time_t tNow = time(NULL);
|
||||
struct tm *tm = localtime(&tNow);
|
||||
int zoneh = abs(_timezone);
|
||||
int zonem, res, len;
|
||||
int zonem, res;
|
||||
char *header_buffer;
|
||||
char *headers_lc = NULL;
|
||||
size_t i;
|
||||
|
Loading…
Reference in New Issue
Block a user