Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Nov 2017 02:56:27 +0000 (UTC)
From:      Larry Rosenman <ler@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r455091 - in head/security/clamav: . files
Message-ID:  <201711290256.vAT2uRa0027784@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ler
Date: Wed Nov 29 02:56:26 2017
New Revision: 455091
URL: https://svnweb.freebsd.org/changeset/ports/455091

Log:
  security/clamav: incorrect type size on amd64 in pcre2.
  
  PR:		223945
  Submitted by:	coyote@bks.tv

Added:
  head/security/clamav/files/patch-libclamav_regex_pcre.c   (contents, props changed)
Modified:
  head/security/clamav/Makefile

Modified: head/security/clamav/Makefile
==============================================================================
--- head/security/clamav/Makefile	Wed Nov 29 01:08:54 2017	(r455090)
+++ head/security/clamav/Makefile	Wed Nov 29 02:56:26 2017	(r455091)
@@ -3,7 +3,7 @@
 
 PORTNAME=	clamav
 PORTVERSION=	0.99.2
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	security
 MASTER_SITES=	http://www.clamav.net/downloads/production/
 

Added: head/security/clamav/files/patch-libclamav_regex_pcre.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/clamav/files/patch-libclamav_regex_pcre.c	Wed Nov 29 02:56:26 2017	(r455091)
@@ -0,0 +1,12 @@
+--- libclamav/regex_pcre.c~	2017-11-28 14:40:56.484208243 +0100
++++ libclamav/regex_pcre.c	2017-11-28 14:41:07.301207800 +0100
+@@ -112,7 +112,8 @@ int cli_pcre_addoptions(struct cli_pcre_
+ #if USING_PCRE2
+ int cli_pcre_compile(struct cli_pcre_data *pd, long long unsigned match_limit, long long unsigned match_limit_recursion, unsigned int options, int opt_override)
+ {
+-    int errornum, erroffset;
++    int errornum;
++    size_t erroffset;
+     pcre2_general_context *gctx;
+     pcre2_compile_context *cctx;
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711290256.vAT2uRa0027784>