From e6af0131cf155e4e75551c0386b6778ca40ef38d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20R=C4=99korajski?= Date: Sun, 5 Apr 2015 20:22:22 +0000 Subject: [PATCH] - fix format string error - rel 5 --- barcode.spec | 4 +++- format-security.patch | 11 +++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 format-security.patch diff --git a/barcode.spec b/barcode.spec index 125f90b..436a225 100644 --- a/barcode.spec +++ b/barcode.spec @@ -2,12 +2,13 @@ Summary: GNU barcode Summary(pl.UTF-8): GNU barcode - narzędzie do kodów paskowych Name: barcode Version: 0.98 -Release: 4 +Release: 5 License: GPL Group: Applications/Graphics Source0: http://ftp.gnu.org/gnu/barcode/%{name}-%{version}.tar.gz # Source0-md5: 7f10c3307b84a19a4ab2fa4b3f2974da Patch0: %{name}-DESTDIR.patch +Patch1: format-security.patch URL: http://www.gnu.org/software/barcode/ BuildRequires: autoconf BuildRequires: automake @@ -60,6 +61,7 @@ stronę manuala do tworzenia programów używających GNU barcode. %prep %setup -q %patch0 -p1 +%patch1 -p1 %build %{__aclocal} diff --git a/format-security.patch b/format-security.patch new file mode 100644 index 0000000..7fae99e --- /dev/null +++ b/format-security.patch @@ -0,0 +1,11 @@ +--- barcode-0.98/plessey.c~ 2000-11-07 17:43:18.000000000 +0000 ++++ barcode-0.98/plessey.c 2015-04-05 20:20:57.170658797 +0000 +@@ -148,7 +148,7 @@ + checkptr[i+j] ^= check[j]; + } + for (i = 0; i < 8; i++) { +- sprintf(ptr, patterns[checkptr[strlen(text) * 4 + i]]); ++ sprintf(ptr, "%s", patterns[checkptr[strlen(text) * 4 + i]]); + ptr += 2; + } + fprintf(stderr, "CRC: "); -- 2.43.0