diff options
author | Lars Hjemli <[email protected]> | 2008-09-14 09:45:37 +0200 |
---|---|---|
committer | Lars Hjemli <[email protected]> | 2008-09-15 22:33:11 +0200 |
commit | a8305a9543969206aa7cec03948c5a19950eedb9 (patch) | |
tree | 8e2cf67ec72bc296b76a4fcb6db5ec8250f0a502 /cgit.h | |
parent | b28765135dd6f52635977454eaf95d0e6c7e7271 (diff) |
parsing.c: be prepared for unexpected content in commit/tag objects
When parsing commits and tags cgit made too many assumptions about the
formatting of said objects. This patch tries to make the code be more
prepared to handle 'malformed' objects.
Signed-off-by: Lars Hjemli <[email protected]>
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -85,7 +85,7 @@ struct commitinfo { struct taginfo { char *tagger; char *tagger_email; - int tagger_date; + unsigned long tagger_date; char *msg; }; |