]> git.sur5r.net Git - i3/i3/commitdiff
Use safe wrappers inside "#if 0" too 1789/head
authorshdown <shdownnine@gmail.com>
Mon, 3 Aug 2015 09:51:55 +0000 (12:51 +0300)
committershdown <shdownnine@gmail.com>
Mon, 3 Aug 2015 09:51:55 +0000 (12:51 +0300)
src/commands_parser.c
src/config_parser.c

index a4602d1556de46ba1da69f0b1993470b83c12770..ffe416f04dd1c3659ff0aae5687f02269ee63700 100644 (file)
@@ -148,9 +148,9 @@ static TAILQ_HEAD(criteria_head, criterion) criteria =
  */
 static void push_criterion(void *unused_criteria, const char *type,
                            const char *value) {
-    struct criterion *criterion = malloc(sizeof(struct criterion));
-    criterion->type = strdup(type);
-    criterion->value = strdup(value);
+    struct criterion *criterion = smalloc(sizeof(struct criterion));
+    criterion->type = sstrdup(type);
+    criterion->value = sstrdup(value);
     TAILQ_INSERT_TAIL(&criteria, criterion, criteria);
 }
 
index e563c808808a593d6c2ca23f2e49e04765a48ad9..6393efe913aa209ba9332b059a24f5be765f1d11 100644 (file)
@@ -202,9 +202,9 @@ static TAILQ_HEAD(criteria_head, criterion) criteria =
  */
 static void push_criterion(void *unused_criteria, const char *type,
                            const char *value) {
-    struct criterion *criterion = malloc(sizeof(struct criterion));
-    criterion->type = strdup(type);
-    criterion->value = strdup(value);
+    struct criterion *criterion = smalloc(sizeof(struct criterion));
+    criterion->type = sstrdup(type);
+    criterion->value = sstrdup(value);
     TAILQ_INSERT_TAIL(&criteria, criterion, criteria);
 }