author | Lars Hjemli <hjemli@gmail.com> | 2007-02-03 15:11:41 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-02-04 20:21:46 (UTC) |
commit | ebd7b0fbc378e9beca0b275c5cd9150c930bde56 (patch) (unidiff) | |
tree | 6ee9ef66be06b164732bcc77930b9186c2819da9 | |
parent | bb3e7950c39b67e863a618b3a0e766544b65d3cb (diff) | |
download | cgit-ebd7b0fbc378e9beca0b275c5cd9150c930bde56.zip cgit-ebd7b0fbc378e9beca0b275c5cd9150c930bde56.tar.gz cgit-ebd7b0fbc378e9beca0b275c5cd9150c930bde56.tar.bz2 |
Do not die if tag has no message
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | parsing.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -217,13 +217,13 @@ struct taginfo *cgit_parse_tag(struct tag *tag) | |||
217 | ret->tagger_email = NULL; | 217 | ret->tagger_email = NULL; |
218 | ret->tagger_date = 0; | 218 | ret->tagger_date = 0; |
219 | ret->msg = NULL; | 219 | ret->msg = NULL; |
220 | 220 | ||
221 | p = data; | 221 | p = data; |
222 | 222 | ||
223 | while (p) { | 223 | while (p && *p) { |
224 | if (*p == '\n') | 224 | if (*p == '\n') |
225 | break; | 225 | break; |
226 | 226 | ||
227 | if (!strncmp(p, "tagger ", 7)) { | 227 | if (!strncmp(p, "tagger ", 7)) { |
228 | p += 7; | 228 | p += 7; |
229 | t = strchr(p, '<') - 1; | 229 | t = strchr(p, '<') - 1; |
@@ -235,11 +235,11 @@ struct taginfo *cgit_parse_tag(struct tag *tag) | |||
235 | } | 235 | } |
236 | p = strchr(p, '\n') + 1; | 236 | p = strchr(p, '\n') + 1; |
237 | } | 237 | } |
238 | 238 | ||
239 | while (p && (*p == '\n')) | 239 | while (p && (*p == '\n')) |
240 | p = strchr(p, '\n') + 1; | 240 | p = strchr(p, '\n') + 1; |
241 | if (p) | 241 | if (p && *p) |
242 | ret->msg = xstrdup(p); | 242 | ret->msg = xstrdup(p); |
243 | free(data); | 243 | free(data); |
244 | return ret; | 244 | return ret; |
245 | } | 245 | } |