]> git.sur5r.net Git - i3/i3/commitdiff
migrate_config: scalloc converted config 3076/head
authorOrestis Floros <orestisf1993@gmail.com>
Sat, 9 Dec 2017 17:56:54 +0000 (19:56 +0200)
committerOrestis Floros <orestisf1993@gmail.com>
Sat, 9 Dec 2017 18:07:58 +0000 (20:07 +0200)
Prevents a false-positive error eg with config file:
set $mod Mod4
bindsym $mod+h split h
bindsym $mod+v split v

ERROR: CONFIG: Expected one of these tokens: <end>, '#', 'set ', ...
ERROR: CONFIG: Line   8:     status_command i3status
ERROR: CONFIG: Line   9: }
ERROR: CONFIG: Line  10: <BE><BE><BE><BE><BE><BE>

src/config_parser.c

index a27cfc5f2bee9879d2fde8049334630e39201fe7..2d3f3bb919eb2d134baa61f9e510880275fd8210 100644 (file)
@@ -743,7 +743,7 @@ static char *migrate_config(char *input, off_t size) {
 
     /* read the script’s output */
     int conv_size = 65535;
-    char *converted = smalloc(conv_size);
+    char *converted = scalloc(conv_size, 1);
     int read_bytes = 0, ret;
     do {
         if (read_bytes == conv_size) {