Searched refs:old_TZstring (Results 1 – 1 of 1) sorted by relevance
480 static char *old_TZstring = NULL; in tzset() local483 if (old_TZstring && TZstring && !strcmp(old_TZstring, TZstring)) in tzset()496 if (old_TZstring) in tzset()497 old_TZstring = realloc(old_TZstring, strlen(TZstring) + 1); in tzset()499 old_TZstring = malloc(strlen(TZstring) + 1); in tzset()500 if (old_TZstring) in tzset()501 strcpy(old_TZstring, TZstring); in tzset()507 if (old_TZstring) { in tzset()508 free(old_TZstring); in tzset()509 old_TZstring = NULL; in tzset()