diff options
| author | grunfink <grunfink@comam.es> | 2025-12-18 08:41:28 +0100 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-12-18 08:41:28 +0100 |
| commit | fd45b94c09233221d7b98a7270c768272bd25ac9 (patch) | |
| tree | 2d79d581a57529c83498a17c216dea032f5334c3 /snac.h | |
| parent | c8ee70f6df7276b7c02f902cc544d209139697b2 (diff) | |
Fixed leak in timeline_admire().
Diffstat (limited to 'snac.h')
| -rw-r--r-- | snac.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -183,8 +183,8 @@ xs_str *user_index_fn(snac *user, const char *idx_name); xs_list *timeline_simple_list(snac *user, const char *idx_name, int skip, int show, int *more); xs_list *timeline_list(snac *snac, const char *idx_name, int skip, int show, int *more); int timeline_add(snac *snac, const char *id, const xs_dict *o_msg); -int timeline_admire(snac *snac, const char *id, const char *admirer, int like, xs_dict *msg); -int timeline_emoji_react(const char *atto, const char *id, xs_dict *o_msg); +int timeline_admire(snac *snac, const char *id, const char *admirer, int like, const xs_dict *msg); +int timeline_emoji_react(const char *atto, const char *id, const xs_dict *o_msg); xs_list *timeline_top_level(snac *snac, const xs_list *list); void timeline_add_mark(snac *user); |