Hello Nirgal,

thanks to have reported it.  I am not sure it is really wrong to omit
quotes but in any case I am going to apply this patch:

=== modified file 'src/cookies.c'
--- src/cookies.c       2011-01-01 12:19:37 +0000
+++ src/cookies.c       2011-08-02 20:53:42 +0000
@@ -350,6 +350,13 @@
     goto error;
   if (!value.b)
     goto error;
+
+  /* If the value is quoted, do not modify it.  */
+  if (*(value.b - 1) == '"')
+    value.b--;
+  if (*value.e == '"')
+    value.e++;
+
   cookie->attr = strdupdelim (name.b, name.e);
   cookie->value = strdupdelim (value.b, value.e);
 

Cheers,
Giuseppe




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to