Fixed crash in check_signature().

This commit is contained in:
default 2023-06-13 22:09:20 +02:00
parent a3d33bfd3f
commit f5e437a100

5
http.c
View File

@ -132,6 +132,11 @@ int check_signature(snac *snac, xs_dict *req, xs_str **err)
char *pubkey;
char *p;
if (xs_is_null(sig_hdr)) {
*err = xs_fmt("missing 'signature' header");
return 0;
}
{
/* extract the values */
xs *l = xs_split(sig_hdr, ",");