mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
shared: remove return value from cgit_free_commitinfo()
This return value is never used and the function always returns NULL. Signed-off-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
parent
000cf294c4
commit
d9dff37691
2
cgit.h
2
cgit.h
@ -343,7 +343,7 @@ extern void cgit_free_reflist_inner(struct reflist *list);
|
|||||||
extern int cgit_refs_cb(const char *refname, const struct object_id *oid,
|
extern int cgit_refs_cb(const char *refname, const struct object_id *oid,
|
||||||
int flags, void *cb_data);
|
int flags, void *cb_data);
|
||||||
|
|
||||||
extern void *cgit_free_commitinfo(struct commitinfo *info);
|
extern void cgit_free_commitinfo(struct commitinfo *info);
|
||||||
|
|
||||||
void cgit_diff_tree_cb(struct diff_queue_struct *q,
|
void cgit_diff_tree_cb(struct diff_queue_struct *q,
|
||||||
struct diff_options *options, void *data);
|
struct diff_options *options, void *data);
|
||||||
|
3
shared.c
3
shared.c
@ -95,7 +95,7 @@ struct cgit_repo *cgit_get_repoinfo(const char *url)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void *cgit_free_commitinfo(struct commitinfo *info)
|
void cgit_free_commitinfo(struct commitinfo *info)
|
||||||
{
|
{
|
||||||
free(info->author);
|
free(info->author);
|
||||||
free(info->author_email);
|
free(info->author_email);
|
||||||
@ -105,7 +105,6 @@ void *cgit_free_commitinfo(struct commitinfo *info)
|
|||||||
free(info->msg);
|
free(info->msg);
|
||||||
free(info->msg_encoding);
|
free(info->msg_encoding);
|
||||||
free(info);
|
free(info);
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
char *trim_end(const char *str, char c)
|
char *trim_end(const char *str, char c)
|
||||||
|
Loading…
Reference in New Issue
Block a user