Re: svn commit: r285644 - head/contrib/sqlite3

2015-07-18 Thread Dimitry Andric
On 18 Jul 2015, at 00:53, Pedro Giffuni wrote: > > On 07/17/15 17:26, Peter Jeremy wrote: >> On 2015-Jul-16 22:07:14 +, "Pedro F. Giffuni" wrote: >>> Log: >> ... >>> sqlite: clean a couple of invocations of memcpy(3) >>>Found almost accidentally by our native gcc when enhanced with >>>

Re: svn commit: r285644 - head/contrib/sqlite3

2015-07-18 Thread Pedro Giffuni
On 07/18/15 01:26, Bruce Evans wrote: On Fri, 17 Jul 2015, Pedro Giffuni wrote: ... The compiler warning is this: ... ===> lib/libsqlite3 (obj,depend,all,install) cc1: warnings being treated as errors /scratch/tmp/pfg/head/lib/libsqlite3/../../contrib/sqlite3/sqlite3.c: In function 'walInde

Re: svn commit: r285644 - head/contrib/sqlite3

2015-07-17 Thread Bruce Evans
On Fri, 17 Jul 2015, Pedro Giffuni wrote: On 07/17/15 17:26, Peter Jeremy wrote: On 2015-Jul-16 22:07:14 +, "Pedro F. Giffuni" wrote: Log: ... sqlite: clean a couple of invocations of memcpy(3) Found almost accidentally by our native gcc when enhanced with FORTIFY_SOURCE. ...

Re: svn commit: r285644 - head/contrib/sqlite3

2015-07-17 Thread Pedro Giffuni
On 07/17/15 17:26, Peter Jeremy wrote: On 2015-Jul-16 22:07:14 +, "Pedro F. Giffuni" wrote: Log: ... sqlite: clean a couple of invocations of memcpy(3) Found almost accidentally by our native gcc when enhanced with FORTIFY_SOURCE. ... - memcpy((void *)&aHdr[1], (void *)&pWa

Re: svn commit: r285644 - head/contrib/sqlite3

2015-07-17 Thread Peter Jeremy
On 2015-Jul-16 22:07:14 +, "Pedro F. Giffuni" wrote: >Log: ... > sqlite: clean a couple of invocations of memcpy(3) > > Found almost accidentally by our native gcc when enhanced with > FORTIFY_SOURCE. ... >- memcpy((void *)&aHdr[1], (void *)&pWal->hdr, sizeof(WalIndexHdr)); >+ memcpy((v

Re: svn commit: r285644 - head/contrib/sqlite3

2015-07-17 Thread Bruce Evans
On Thu, 16 Jul 2015, Pedro Giffuni wrote: On 07/16/15 17:22, Ian Lepore wrote: On Thu, 2015-07-16 at 22:07 +, Pedro F. Giffuni wrote: Author: pfg Date: Thu Jul 16 22:07:13 2015 New Revision: 285644 URL: https://svnweb.freebsd.org/changeset/base/285644 Log: sqlite: clean a couple of inv

Re: svn commit: r285644 - head/contrib/sqlite3

2015-07-16 Thread Pedro Giffuni
On 07/16/15 17:22, Ian Lepore wrote: On Thu, 2015-07-16 at 22:07 +, Pedro F. Giffuni wrote: Author: pfg Date: Thu Jul 16 22:07:13 2015 New Revision: 285644 URL: https://svnweb.freebsd.org/changeset/base/285644 Log: sqlite: clean a couple of invocations of memcpy(3) Found almost

Re: svn commit: r285644 - head/contrib/sqlite3

2015-07-16 Thread Pedro Giffuni
On 07/16/15 17:16, Baptiste Daroussin wrote: On Thu, Jul 16, 2015 at 10:07:14PM +, Pedro F. Giffuni wrote: Author: pfg Date: Thu Jul 16 22:07:13 2015 New Revision: 285644 URL: https://svnweb.freebsd.org/changeset/base/285644 Log: sqlite: clean a couple of invocations of memcpy(3)

Re: svn commit: r285644 - head/contrib/sqlite3

2015-07-16 Thread Ian Lepore
On Thu, 2015-07-16 at 22:07 +, Pedro F. Giffuni wrote: > Author: pfg > Date: Thu Jul 16 22:07:13 2015 > New Revision: 285644 > URL: https://svnweb.freebsd.org/changeset/base/285644 > > Log: > sqlite: clean a couple of invocations of memcpy(3) > > Found almost accidentally by our native

Re: svn commit: r285644 - head/contrib/sqlite3

2015-07-16 Thread Baptiste Daroussin
On Thu, Jul 16, 2015 at 10:07:14PM +, Pedro F. Giffuni wrote: > Author: pfg > Date: Thu Jul 16 22:07:13 2015 > New Revision: 285644 > URL: https://svnweb.freebsd.org/changeset/base/285644 > > Log: > sqlite: clean a couple of invocations of memcpy(3) > > Found almost accidentally by our

svn commit: r285644 - head/contrib/sqlite3

2015-07-16 Thread Pedro F. Giffuni
Author: pfg Date: Thu Jul 16 22:07:13 2015 New Revision: 285644 URL: https://svnweb.freebsd.org/changeset/base/285644 Log: sqlite: clean a couple of invocations of memcpy(3) Found almost accidentally by our native gcc when enhanced with FORTIFY_SOURCE. Submitted by: Oliver Pinter S