-rw-r--r-- | parsing.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -243,5 +243,5 @@ struct commitinfo *cgit_parse_commit(struct commit *commit) if (t) { if (*t == '\0') - ret->subject = strdup("** empty **"); + ret->subject = "** empty **"; else ret->subject = substr(p, t); @@ -250,5 +250,5 @@ struct commitinfo *cgit_parse_commit(struct commit *commit) while (*p == '\n') p = strchr(p, '\n') + 1; - ret->msg = p; + ret->msg = xstrdup(p); } else ret->subject = substr(p, p+strlen(p)); |