From 880a5cdfdda0e5176f826c68b8afcea915829a4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Thu, 17 Nov 2016 14:38:21 +0100 Subject: Fix overrun when quotes are unescaped --- debian/patches/0100-unescaped_quotes.patch | 19 +++++++++++++++++++ debian/patches/series | 1 + 2 files changed, 20 insertions(+) create mode 100644 debian/patches/0100-unescaped_quotes.patch create mode 100644 debian/patches/series (limited to 'debian/patches') diff --git a/debian/patches/0100-unescaped_quotes.patch b/debian/patches/0100-unescaped_quotes.patch new file mode 100644 index 0000000..29b310d --- /dev/null +++ b/debian/patches/0100-unescaped_quotes.patch @@ -0,0 +1,19 @@ +Description: fix overrun when quotes are unescaped +Origin: upstream +Bug: https://github.com/ben-strasser/fast-cpp-csv-parser/pull/32 +Last-Update: 2016-11-17 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/csv.h +=================================================================== +--- trunk.orig/csv.h ++++ trunk/csv.h +@@ -786,7 +786,7 @@ namespace io{ + --col_end; + char*out = col_begin; + for(char*in = col_begin; in!=col_end; ++in){ +- if(*in == quote && *(in+1) == quote){ ++ if(*in == quote && (in+1) != col_end && *(in+1) == quote){ + ++in; + } + *out = *in; diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..b10f1b0 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +0100-unescaped_quotes.patch -- cgit v1.2.3