X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Futilities%2Ftitle.c;h=323bdf3fa51e79d35c375e8fc6a4dde22431a979;hb=e868585d6cc2e5a86b83ea3efade350b23e30188;hp=a0a71e9cee7d4481d0fd143d1e56bf754c4b0edb;hpb=320622191b3de640da6ba0e347a94d28493711ae;p=pspp diff --git a/src/language/utilities/title.c b/src/language/utilities/title.c index a0a71e9cee..323bdf3fa5 100644 --- a/src/language/utilities/title.c +++ b/src/language/utilities/title.c @@ -59,7 +59,7 @@ parse_title (struct lexer *lexer, void (*set_title) (const char *)) /* Get the raw representation of all the tokens, including any space between them, and use it as the title. */ - char *title = ss_xstrdup (lex_next_representation (lexer, 0, n - 1)); + char *title = lex_next_representation (lexer, 0, n - 1); set_title (title); free (title);