summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/html.c b/html.c
index d86b2c1..5336596 100644
--- a/html.c
+++ b/html.c
@@ -249,7 +249,7 @@ char *convert_query_hexchar(char *txt)
d1 = hextoint(*(txt+1));
d2 = hextoint(*(txt+2));
if (d1<0 || d2<0) {
- memmove(txt, txt+3, n-3);
+ memmove(txt, txt+3, n-2);
return txt-1;
} else {
*txt = d1 * 16 + d2;
en/templates/macros.jinja?id=1fb9da122aa3a5a9ea3ec09ee7d78fceebabc69b&follow=1'>Fix some errorsRené 'Necoro' Neumann3-6/+6 2020-08-01Fix optional 'description' fieldRené 'Necoro' Neumann2-2/+2 2020-07-24Revert "Remove translation hack"René 'Necoro' Neumann1-1/+7 This reverts commit 6600ae0674bc685c4756a040b4db47e927f2e15e. 2020-07-24length validators for string fieldsRené 'Necoro' Neumann4-3/+9 2020-07-24Fix handling of prefilling the description field on adding a new expense.René 'Necoro' Neumann1-9/+6 2020-07-24Remove translation hackRené 'Necoro' Neumann1-7/+1 2020-07-24Improved debuggingRené 'Necoro' Neumann2-1/+2 2020-07-23RestructureRené 'Necoro' Neumann51-2/+3 2020-07-22Do not write bytecode for local debug runningRené 'Necoro' Neumann1-1/+4 2020-07-22Remove left over mention of jquery-uiRené 'Necoro' Neumann1-6/+1 2020-07-22Add simplejson as a dependencyRené 'Necoro' Neumann1-0/+1 2020-07-22Settings splittingRené 'Necoro' Neumann2-5/+3 2020-07-22Add flipflopRené 'Necoro' Neumann1-0/+1