snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 9bb08cfd51f670acd25c445abd1e7fd759da86e1
parent e2ef581e842880fb6673d22fb26d2dd329282736
Author: default <nobody@localhost>
Date:   Wed, 26 Apr 2023 17:37:33 +0200

Fixed crash in mastoapi search.

Diffstat:
Mmastoapi.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mastoapi.c b/mastoapi.c @@ -1436,7 +1436,7 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path, /* reply something only for offset 0; otherwise, apps like Tusky keep asking again and again */ - if (!xs_is_null(q) && strcmp(type, "accounts") == 0) { + if (!xs_is_null(q) && !xs_is_null(type) && strcmp(type, "accounts") == 0) { /* do a webfinger query */ char *actor = NULL; char *user = NULL;