mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Remove unused local variables.
This commit is contained in:
parent
3ad50e1279
commit
596859eb44
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue