mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 05:15:04 +00:00
Fixed crash in check_signature().
This commit is contained in:
parent
a3d33bfd3f
commit
f5e437a100
1 changed files with 5 additions and 0 deletions
5
http.c
5
http.c
|
@ -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, ",");
|
||||
|
|
Loading…
Reference in a new issue