projects
/
yaz-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a2fc23c
)
yaz_uri_to_array: fix check for x-form names
author
Adam Dickmeiss
<adam@indexdata.dk>
Mon, 12 Nov 2012 18:35:28 +0000
(19:35 +0100)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Mon, 12 Nov 2012 18:35:28 +0000
(19:35 +0100)
src/uri.c
patch
|
blob
|
history
diff --git
a/src/uri.c
b/src/uri.c
index
6db68e5
..
1ebb530
100644
(file)
--- a/
src/uri.c
+++ b/
src/uri.c
@@
-132,7
+132,7
@@
int yaz_uri_to_array(const char *path, ODR o, char ***name, char ***val)
{
cp++;
no++;
- while (*cp != '=')
+ while (*cp && *cp != '=' && *cp != '&')
{
/* check that x-form names looks sane */
if (*cp <= ' ' || *cp >= 127)