From: EvilPudding Date: Fri, 15 Apr 2016 13:24:03 +0000 (+0000) Subject: Leaving the last byte in Colorpixel.hex NULL X-Git-Tag: 4.13~54^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=96704b2fc037f2b7906184d8580226a1e2611ae4;p=i3%2Fi3 Leaving the last byte in Colorpixel.hex NULL Added explicit assignment of last byte to the null character, for appearence's sake. --- diff --git a/libi3/get_colorpixel.c b/libi3/get_colorpixel.c index 218f82e6..dc6d7748 100644 --- a/libi3/get_colorpixel.c +++ b/libi3/get_colorpixel.c @@ -74,7 +74,10 @@ uint32_t get_colorpixel(const char *hex) { /* Store the result in the cache */ struct Colorpixel *cache_pixel = scalloc(1, sizeof(struct Colorpixel)); - strncpy(cache_pixel->hex, hex, 8); + + strncpy(cache_pixel->hex, hex, 7); + cache_pixel->hex[7] = '\0'; + cache_pixel->pixel = pixel; SLIST_INSERT_HEAD(&(colorpixels), cache_pixel, colorpixels);