From 39b76db46ff16bde60af6d4af6aacad1969036be Mon Sep 17 00:00:00 2001 From: Packit Service Date: Dec 09 2020 22:43:02 +0000 Subject: Apply patch pcre-8.38-Allow-for-up-to-32-bit-numbers-in-the-ordin-function.patch patch_name: pcre-8.38-Allow-for-up-to-32-bit-numbers-in-the-ordin-function.patch present_in_specfile: true --- diff --git a/pcregrep.c b/pcregrep.c index 64986b0..cd53c64 100644 --- a/pcregrep.c +++ b/pcregrep.c @@ -2437,7 +2437,7 @@ return options; static char * ordin(int n) { -static char buffer[8]; +static char buffer[14]; char *p = buffer; sprintf(p, "%d", n); while (*p != 0) p++;