Re: [PATCH libX11] XFree will accept NULL as argument

2016-08-26 Thread walter harms
Am 26.08.2016 11:08, schrieb Hans de Goede: > Hi, > > On 15-08-16 19:18, walter harms wrote: >> since Xfree is a define for free() >> Xlibint.h:#define Xfree(ptr) free((ptr)) >> >> Xfree will accept NULL and do nothing. >> >> the patch is also available on github.com/xtforever/libX11.git > >

Re: [PATCH libX11] XFree will accept NULL as argument

2016-08-26 Thread Hans de Goede
Hi, On 15-08-16 19:18, walter harms wrote: since Xfree is a define for free() Xlibint.h:#define Xfree(ptr) free((ptr)) Xfree will accept NULL and do nothing. the patch is also available on github.com/xtforever/libX11.git Thanks, applied. Can you next time please add a S-o-b, i.e.: Signed

Re: [PATCH libX11] XFree will accept NULL as argument

2016-08-16 Thread Pekka Paalanen
On Tue, 16 Aug 2016 17:49:24 +0300 Pekka Paalanen wrote: > On Tue, 16 Aug 2016 11:56:50 +0100 > Eric Engestrom wrote: > > > On Mon, Aug 15, 2016 at 07:18:14PM +0200, walter harms wrote: > > > since Xfree is a define for free() > > > Xlibint.h:#define Xfree(ptr) free((ptr)) > > > > > > Xfre

Re: [PATCH libX11] XFree will accept NULL as argument

2016-08-16 Thread Pekka Paalanen
On Tue, 16 Aug 2016 11:56:50 +0100 Eric Engestrom wrote: > On Mon, Aug 15, 2016 at 07:18:14PM +0200, walter harms wrote: > > since Xfree is a define for free() > > Xlibint.h:#define Xfree(ptr) free((ptr)) > > > > Xfree will accept NULL and do nothing. > > > > the patch is also available on gi

Re: [PATCH libX11] XFree will accept NULL as argument

2016-08-16 Thread walter harms
Am 16.08.2016 13:10, schrieb Eric Engestrom: > On Tue, Aug 16, 2016 at 11:56:50AM +0100, Eric Engestrom wrote: >> On Mon, Aug 15, 2016 at 07:18:14PM +0200, walter harms wrote: >>> since Xfree is a define for free() >>> Xlibint.h:#define Xfree(ptr) free((ptr)) >>> >>> Xfree will accept NULL and

Re: [PATCH libX11] XFree will accept NULL as argument

2016-08-16 Thread Eric Engestrom
On Tue, Aug 16, 2016 at 11:56:50AM +0100, Eric Engestrom wrote: > On Mon, Aug 15, 2016 at 07:18:14PM +0200, walter harms wrote: > > since Xfree is a define for free() > > Xlibint.h:#define Xfree(ptr) free((ptr)) > > > > Xfree will accept NULL and do nothing. > > > > the patch is also available

Re: [PATCH libX11] XFree will accept NULL as argument

2016-08-16 Thread Eric Engestrom
On Mon, Aug 15, 2016 at 07:18:14PM +0200, walter harms wrote: > since Xfree is a define for free() > Xlibint.h:#define Xfree(ptr) free((ptr)) > > Xfree will accept NULL and do nothing. > > the patch is also available on github.com/xtforever/libX11.git > > --- > man/XFree.man | 5 +++-- > 1 fi

[PATCH libX11] XFree will accept NULL as argument

2016-08-15 Thread walter harms
since Xfree is a define for free() Xlibint.h:#define Xfree(ptr) free((ptr)) Xfree will accept NULL and do nothing. the patch is also available on github.com/xtforever/libX11.git --- man/XFree.man | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/man/XFree.man b/man/XFre