X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fgroup-item.c;h=34ca63eab33858c84717f159b4ede4c67e04bf6a;hb=e91782a2d25dec932c93b7a57bd03d836614ba43;hp=fd172accdca40f912705cd3ab90743b8c31e5533;hpb=71e127e1085ec56f4aa51153701d96a80ef8ff05;p=pspp diff --git a/src/output/group-item.c b/src/output/group-item.c index fd172accdc..34ca63eab3 100644 --- a/src/output/group-item.c +++ b/src/output/group-item.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2018 Free Sonftware Foundation, Inc. + Copyright (C) 2018 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -27,12 +27,19 @@ struct group_open_item * group_open_item_create (const char *command_name) +{ + return group_open_item_create_nocopy ( + command_name ? xstrdup (command_name) : NULL); +} + +struct group_open_item * +group_open_item_create_nocopy (char *command_name) { struct group_open_item *item; item = xmalloc (sizeof *item); output_item_init (&item->output_item, &group_open_item_class); - item->command_name = command_name ? xstrdup (command_name) : NULL; + item->command_name = command_name; return item; }