Handle password=0 for z_HTTP_header_add_basic_auth
[yaz-moved-to-github.git] / src / http.c
index 7546047..0fb1434 100644 (file)
@@ -233,6 +233,8 @@ void z_HTTP_header_add_basic_auth(ODR o, Z_HTTP_Header **hp,
 
     if (username == 0)
         return;
+    if (password == 0)
+        password = "";
 
     len = strlen(username) + strlen(password);
     tmp = (char *) odr_malloc(o, len+2);