summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorT. Lohmar <smarttv640@gmail.com>2014-10-04 19:28:46 +0200
committerT. Lohmar <smarttv640@gmail.com>2014-10-04 19:28:46 +0200
commit6a84ee7efa5b3be309b0ecea5b1559b6f4ac6d58 (patch)
tree2b370a61dd838c6df9722885869c83938e5f1810
parentb098218e1dc48b8e707f03c8fb495bb786ad1fba (diff)
downloadvdr-plugin-smarttvweb-6a84ee7efa5b3be309b0ecea5b1559b6f4ac6d58.tar.gz
vdr-plugin-smarttvweb-6a84ee7efa5b3be309b0ecea5b1559b6f4ac6d58.tar.bz2
Amp handling corrected in UrlSafeDecode.
-rw-r--r--url.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/url.c b/url.c
index 6bd34b7..3a0a5ad 100644
--- a/url.c
+++ b/url.c
@@ -109,6 +109,9 @@ string cUrlEncode::doUrlSaveDecode(string input) {
case 0x25: // '%'
res += "%";
break;
+ case 0x26: // '&'
+ res += "&";
+ break;
case 0x2f: // '/'
res += "#2F";
break;