diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2015-02-08 22:37:38 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-10 15:03:28 -0800 |
commit | f39962469d726d6ae7e13931763b3e13c59d626a (patch) | |
tree | e2121ea668a1b51c60a683aa9b2d9d800ccb8426 /file.c | |
parent | 01199728fbf7ad16613d1041245859ec684d186e (diff) | |
download | subsurface-f39962469d726d6ae7e13931763b3e13c59d626a.tar.gz |
Increase the limits for recursion and variables on XSLT parsing
This increases the limits when parsing CSV files with dive profiles,
allowing us to import bigger files in one go.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -866,6 +866,11 @@ int parse_csv_file(const char *filename, int timef, int depthf, int tempf, int p char curtime[TIMESTR]; int previous; + /* Increase the limits for recursion and variables on XSLT + * parsing */ + xsltMaxDepth = 30000; + xsltMaxVars = 150000; + if (timef >= MAXCOLS || depthf >= MAXCOLS || tempf >= MAXCOLS || po2f >= MAXCOLS || cnsf >= MAXCOLS || ndlf >= MAXCOLS || cnsf >= MAXCOLS || stopdepthf >= MAXCOLS || pressuref >= MAXCOLS) return report_error(translate("gettextFromC", "Maximum number of supported columns on CSV import is %d"), MAXCOLS); |