diff options
| author | grunfink <grunfink@comam.es> | 2025-12-18 08:09:10 +0100 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-12-18 08:09:10 +0100 |
| commit | 7c065cbc9879582985cef3d3ad8b2ae197b8b851 (patch) | |
| tree | 568ca6194ba6071c1f1a0ab20347e4852cb122b5 /data.c | |
| parent | 85ed0eb0d535700a5df837c37f51848811e461a0 (diff) | |
Fixed some xs_dup() leaks.
Diffstat (limited to 'data.c')
| -rw-r--r-- | data.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1599,7 +1599,7 @@ int timeline_admire(snac *snac, const char *id, /* use utf <3 as a like, as it is ugly */ if (type && xs_match(type, "Like|EmojiReact|Emoji") && content && strcmp(content, "❤") != 0) { - ret = timeline_emoji_react(xs_dup(snac->actor), id, xs_dup(msg)); + ret = timeline_emoji_react(snac->actor, id, xs_dup(msg)); snac_debug(snac, 1, xs_fmt("timeline_emoji_react %s", id)); } |