Browse Source

Fixed crash in check_signature().

default 1 year ago
parent
commit
f5e437a100
1 changed files with 5 additions and 0 deletions
  1. 5 0
      http.c

+ 5 - 0
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, ",");