diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-08-23 10:58:08 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-08-23 10:58:08 -0700 |
commit | cef66d42f91d934ce8bd058cd7c76b87f78628a7 (patch) | |
tree | 6e9443de0362e62c49f269b0473e23ad5c84379e /src | |
parent | 06e3af57a1ed7b07560974877b5280504eaefb63 (diff) |
Add MAX_INDENT for xml.
Otherwise we can get quadratic increase in size with deeply
nested structures.
See #355.
Diffstat (limited to 'src')
-rw-r--r-- | src/xml.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10,6 +10,7 @@ #include "houdini.h" #define BUFFER_SIZE 100 +#define MAX_INDENT 40 // Functions to convert cmark_nodes to XML strings. @@ -30,7 +31,7 @@ struct render_state { static CMARK_INLINE void indent(struct render_state *state) { int i; - for (i = 0; i < state->indent; i++) { + for (i = 0; i < state->indent && i < MAX_INDENT; i++) { cmark_strbuf_putc(state->xml, ' '); } } |