We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e56d629 commit 8879413Copy full SHA for 8879413
apache2/msc_xml.c
@@ -36,7 +36,7 @@ static void msc_xml_on_start_elementns(
36
xml_parser_state->pathlen += (taglen + 1);
37
char *newpath = apr_pstrcat(msr->mp, xml_parser_state->currpath, ".", (char *)localname, NULL);
38
xml_parser_state->currpath = newpath;
39
- xml_parser_state->currpathbufflen += taglen + 1;
+ xml_parser_state->currpathbufflen += taglen + 1; // +1 for the '.' character here too
40
41
int *new_stack_item = (int *)apr_array_push(xml_parser_state->has_child_stack);
42
*new_stack_item = 0;
0 commit comments