mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 21:09:17 -04:00
field. Reported by: Yuri Pankov <yuri.pankov@gmail.com> Obtained from: http://bugzilla.gnome.org/show_bug.cgi?id=425129#c21
13 lines
476 B
C
13 lines
476 B
C
Index: calendar/libical/src/libical/icaltimezone.c
|
|
===================================================================
|
|
--- calendar/libical/src/libical/icaltimezone.c (révision 593)
|
|
+++ calendar/libical/src/libical/icaltimezone.c (copie de travail)
|
|
@@ -1433,7 +1433,7 @@
|
|
|
|
z_offset = get_offset(zone);
|
|
|
|
- if (z_offset == offset && !strcmp(tzname, zone->tznames))
|
|
+ if (z_offset == offset && zone->tznames && !strcmp(tzname, zone->tznames))
|
|
return zone;
|
|
}
|
|
|