-rw-r--r-- | NEWS.xml | 1 | ||||
-rw-r--r-- | lib/params.cc | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -4,6 +4,7 @@ | |||
4 | <ni>OpenID simple registration extension implementation</ni> | 4 | <ni>OpenID simple registration extension implementation</ni> |
5 | <ni>OpenID extensions framework</ni> | 5 | <ni>OpenID extensions framework</ni> |
6 | <ni>Canonicalization bugfix</ni> | 6 | <ni>Canonicalization bugfix</ni> |
7 | <ni>Slightly improved interoperability with buggy implementations</ni> | ||
7 | </version> | 8 | </version> |
8 | <version version="0.0" date="July 25th, 2005"> | 9 | <version version="0.0" date="July 25th, 2005"> |
9 | <ni>Initial release</ni> | 10 | <ni>Initial release</ni> |
diff --git a/lib/params.cc b/lib/params.cc index 03867d5..b181811 100644 --- a/lib/params.cc +++ b/lib/params.cc | |||
@@ -33,6 +33,7 @@ namespace opkele { | |||
33 | string::size_type nl = kv.find('\n',co+1); | 33 | string::size_type nl = kv.find('\n',co+1); |
34 | if(nl==string::npos) | 34 | if(nl==string::npos) |
35 | throw bad_input(OPKELE_CP_ "malformed input"); | 35 | throw bad_input(OPKELE_CP_ "malformed input"); |
36 | if(nl>co) | ||
36 | insert(value_type(kv.substr(p,co-p),kv.substr(co+1,nl-co-1))); | 37 | insert(value_type(kv.substr(p,co-p),kv.substr(co+1,nl-co-1))); |
37 | p = nl+1; | 38 | p = nl+1; |
38 | } | 39 | } |