]> mj.ucw.cz Git - libucw.git/commitdiff
Opt: strdup -> xstrdup
authorJan 'Moskyt' Matejka <mq@ucw.cz>
Mon, 13 May 2013 08:00:10 +0000 (10:00 +0200)
committerJan 'Moskyt' Matejka <mq@ucw.cz>
Mon, 13 May 2013 08:00:10 +0000 (10:00 +0200)
ucw/opt.c

index ed84799393a663bdfa9802a7fb7aa24cf7eadd7e..d1a19f9bd95f0358845694cf99f14c444e1c9a03 100644 (file)
--- a/ucw/opt.c
+++ b/ucw/opt.c
@@ -264,7 +264,7 @@ static void opt_parse_value(struct opt_precomputed_option * opt, char * value, i
            if (!value)
              item->ptr = NULL;
            else
-             item->ptr = strdup(value);
+             item->ptr = xstrdup(value);
            break;
          default:
            ASSERT(0);
@@ -574,7 +574,7 @@ static void add_tea(const char * name) {
     fprintf(stderr, "Cannot boil more than %d teas.\n", MAX_TEA_COUNT);
     exit(OPT_EXIT_BAD_ARGS);
   }
-  tea_list[tea_num++] = strdup(name);
+  tea_list[tea_num++] = xstrdup(name);
 }
 
 static void boil_tea(const char * name) {