diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-04-18 18:54:08 +0200 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-04-18 22:31:50 +0100 |
commit | 85ccea1c4f11dad4dbda77b9666897a0e1df5674 (patch) | |
tree | a07658290a9440208115c97250188cc3dcee159d /dev-libs/libxls | |
parent | app-forensics/honggfuzz: remove unused patches (diff) | |
download | gentoo-85ccea1c4f11dad4dbda77b9666897a0e1df5674.tar.gz gentoo-85ccea1c4f11dad4dbda77b9666897a0e1df5674.tar.bz2 gentoo-85ccea1c4f11dad4dbda77b9666897a0e1df5674.zip |
dev-libs/libxls: remove unused patch
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-libs/libxls')
-rw-r--r-- | dev-libs/libxls/files/libxls-1.4.0-infinite.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-libs/libxls/files/libxls-1.4.0-infinite.patch b/dev-libs/libxls/files/libxls-1.4.0-infinite.patch deleted file mode 100644 index 6f6e9fc1e1ec..000000000000 --- a/dev-libs/libxls/files/libxls-1.4.0-infinite.patch +++ /dev/null @@ -1,16 +0,0 @@ -cellRow and cellCol need to be of a type larger than WORD. -Otherwise for for documents with 65535 columns condition -loops forever in the following line: - for (cellRow = 0; cellRow <= pWS->rows.lastrow; cellRow++) { -In this case <= 65535 is always true. - -https://bugs.gentoo.org/607094 has an example doc of this kind. -diff --git a/libxls/src/xls2csv.c b/libxls/src/xls2csv.c -index b804267..1f0d4b3 100644 ---- a/src/xls2csv.c -+++ b/src/xls2csv.c -@@ -104,3 +104,3 @@ int main(int argc, char *argv[]) { - struct st_row_data* row; -- WORD cellRow, cellCol; -+ DWORD cellRow, cellCol; - |