|
diff --git a/parsing.c b/parsing.c index b86467a..74a2484 100644 --- a/ parsing.c+++ b/ parsing.c |
|
@@ -171,64 +171,67 @@ void cgit_parse_url(const char *url) |
171 | cgit_query_path = xstrdup(p + 1); |
171 | cgit_query_path = xstrdup(p + 1); |
172 | } |
172 | } |
173 | cgit_cmd = cgit_get_cmd_index(cmd + 1); |
173 | cgit_cmd = cgit_get_cmd_index(cmd + 1); |
174 | cgit_query_page = xstrdup(cmd + 1); |
174 | cgit_query_page = xstrdup(cmd + 1); |
175 | return; |
175 | return; |
176 | } |
176 | } |
177 | } |
177 | } |
178 | |
178 | |
179 | char *substr(const char *head, const char *tail) |
179 | char *substr(const char *head, const char *tail) |
180 | { |
180 | { |
181 | char *buf; |
181 | char *buf; |
182 | |
182 | |
183 | buf = xmalloc(tail - head + 1); |
183 | buf = xmalloc(tail - head + 1); |
184 | strncpy(buf, head, tail - head); |
184 | strncpy(buf, head, tail - head); |
185 | buf[tail - head] = '\0'; |
185 | buf[tail - head] = '\0'; |
186 | return buf; |
186 | return buf; |
187 | } |
187 | } |
188 | |
188 | |
189 | struct commitinfo *cgit_parse_commit(struct commit *commit) |
189 | struct commitinfo *cgit_parse_commit(struct commit *commit) |
190 | { |
190 | { |
191 | struct commitinfo *ret; |
191 | struct commitinfo *ret; |
192 | char *p = commit->buffer, *t = commit->buffer; |
192 | char *p = commit->buffer, *t = commit->buffer; |
193 | |
193 | |
194 | ret = xmalloc(sizeof(*ret)); |
194 | ret = xmalloc(sizeof(*ret)); |
195 | ret->commit = commit; |
195 | ret->commit = commit; |
196 | ret->author = NULL; |
196 | ret->author = NULL; |
197 | ret->author_email = NULL; |
197 | ret->author_email = NULL; |
198 | ret->committer = NULL; |
198 | ret->committer = NULL; |
199 | ret->committer_email = NULL; |
199 | ret->committer_email = NULL; |
200 | ret->subject = NULL; |
200 | ret->subject = NULL; |
201 | ret->msg = NULL; |
201 | ret->msg = NULL; |
202 | |
202 | |
| |
203 | if (p == NULL) |
| |
204 | return ret; |
| |
205 | |
203 | if (strncmp(p, "tree ", 5)) |
206 | if (strncmp(p, "tree ", 5)) |
204 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); |
207 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); |
205 | else |
208 | else |
206 | p += 46; // "tree " + hex[40] + "\n" |
209 | p += 46; // "tree " + hex[40] + "\n" |
207 | |
210 | |
208 | while (!strncmp(p, "parent ", 7)) |
211 | while (!strncmp(p, "parent ", 7)) |
209 | p += 48; // "parent " + hex[40] + "\n" |
212 | p += 48; // "parent " + hex[40] + "\n" |
210 | |
213 | |
211 | if (!strncmp(p, "author ", 7)) { |
214 | if (!strncmp(p, "author ", 7)) { |
212 | p += 7; |
215 | p += 7; |
213 | t = strchr(p, '<') - 1; |
216 | t = strchr(p, '<') - 1; |
214 | ret->author = substr(p, t); |
217 | ret->author = substr(p, t); |
215 | p = t; |
218 | p = t; |
216 | t = strchr(t, '>') + 1; |
219 | t = strchr(t, '>') + 1; |
217 | ret->author_email = substr(p, t); |
220 | ret->author_email = substr(p, t); |
218 | ret->author_date = atol(++t); |
221 | ret->author_date = atol(++t); |
219 | p = strchr(t, '\n') + 1; |
222 | p = strchr(t, '\n') + 1; |
220 | } |
223 | } |
221 | |
224 | |
222 | if (!strncmp(p, "committer ", 9)) { |
225 | if (!strncmp(p, "committer ", 9)) { |
223 | p += 9; |
226 | p += 9; |
224 | t = strchr(p, '<') - 1; |
227 | t = strchr(p, '<') - 1; |
225 | ret->committer = substr(p, t); |
228 | ret->committer = substr(p, t); |
226 | p = t; |
229 | p = t; |
227 | t = strchr(t, '>') + 1; |
230 | t = strchr(t, '>') + 1; |
228 | ret->committer_email = substr(p, t); |
231 | ret->committer_email = substr(p, t); |
229 | ret->committer_date = atol(++t); |
232 | ret->committer_date = atol(++t); |
230 | p = strchr(t, '\n') + 1; |
233 | p = strchr(t, '\n') + 1; |
231 | } |
234 | } |
232 | |
235 | |
233 | while (*p == '\n') |
236 | while (*p == '\n') |
234 | p = strchr(p, '\n') + 1; |
237 | p = strchr(p, '\n') + 1; |
|