mirror of git://sourceware.org/git/glibc.git
Don't generate invalid POSIX TZ string for Asia/Dhaka timezone.
This commit is contained in:
parent
bb87239976
commit
851cb78b7d
|
|
@ -1,5 +1,8 @@
|
|||
2009-06-26 Andreas Schwab <aschwab@redhat.com>
|
||||
|
||||
* timezone/zic.c (stringzone): Don't try to generate a POSIX TZ
|
||||
string when the timezone ends in DST.
|
||||
|
||||
* sysdeps/powerpc/powerpc32/____longjmp_chk.S (CHECK_SP): Save lr
|
||||
before call.
|
||||
* sysdeps/powerpc/powerpc64/____longjmp_chk.S (CHECK_SP):
|
||||
|
|
|
|||
|
|
@ -1921,7 +1921,7 @@ const int zonecount;
|
|||
if (stdrp != NULL && stdrp->r_hiyear == 2037)
|
||||
return;
|
||||
}
|
||||
if (stdrp == NULL && zp->z_nrules != 0)
|
||||
if (stdrp == NULL && (zp->z_nrules != 0 || zp->z_stdoff != 0))
|
||||
return;
|
||||
abbrvar = (stdrp == NULL) ? "" : stdrp->r_abbrvar;
|
||||
doabbr(result, zp->z_format, abbrvar, FALSE, TRUE);
|
||||
|
|
|
|||
Loading…
Reference in New Issue