]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix minor timezone memory leak
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 May 2017 21:19:36 +0000 (14:19 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 May 2017 21:36:40 +0000 (14:36 -0700)
* src/editfns.c (wall_clock_tz): Remove; unused.

src/editfns.c

index ecb8e3f083889af936138cd611790685d6b2db77..75eb75a729317e83e7d76a42774154a396a28f58 100644 (file)
@@ -81,10 +81,8 @@ static Lisp_Object styled_format (ptrdiff_t, Lisp_Object *, bool);
 
 enum { tzeqlen = sizeof "TZ=" - 1 };
 
-/* Time zones equivalent to current local time, to wall clock time,
-   and to UTC, respectively.  */
+/* Time zones equivalent to current local time and to UTC, respectively.  */
 static timezone_t local_tz;
-static timezone_t wall_clock_tz;
 static timezone_t const utc_tz = 0;
 
 /* The cached value of Vsystem_name.  This is used only to compare it
@@ -269,7 +267,6 @@ init_editfns (bool dumping)
 
   /* Set the time zone rule now, so that the call to putenv is done
      before multiple threads are active.  */
-  wall_clock_tz = xtzalloc (0);
   tzlookup (tz ? build_string (tz) : Qwall, true);
 
   pw = getpwuid (getuid ());