diff lib/time_rz.c @ 18062:a1744ab6ea8e

time_rz: fix off-by-one typo * lib/time_rz.c (extend_abbrs): Fix off-by-one typo.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 25 Jul 2015 15:10:16 -0700
parents 20ad7d4822c8
children 29e0bb74097d
line wrap: on
line diff
--- a/lib/time_rz.c
+++ b/lib/time_rz.c
@@ -109,7 +109,7 @@
 extend_abbrs (char *abbrs, char const *abbr, size_t abbr_size)
 {
   memcpy (abbrs, abbr, abbr_size);
-  abbrs[abbr_size + 1] = '\0';
+  abbrs[abbr_size] = '\0';
 }
 
 /* Return a newly allocated time zone for NAME, or NULL on failure.