From kde-core-devel Mon Aug 10 10:40:49 2009 From: Albert Astals Cid Date: Mon, 10 Aug 2009 10:40:49 +0000 To: kde-core-devel Subject: Re: kio_sftp rewrite Message-Id: <795110.15200.qm () web27205 ! mail ! ukl ! yahoo ! com> X-MARC-Message: https://marc.info/?l=kde-core-devel&m=124990089227718 > Asunto: Re: kio_sftp rewrite > -0400, Ben Boeckel wrote: > > free() [....] should not crash on NULL > > > wrong > Not wrong: [1] Linux: If ptr is NULL, no operation is performed. [2] SCO: If ptr is a null pointer, no action occurs [3] Microsoft: If memblock is NULL, the pointer is ignored and free immediately returns. [4] FreeBSD: If ptr is NULL, no action occurs. [1] http://linux.die.net/man/3/free [2] http://www.opengroup.org/onlinepubs/7990989775/xsh/free.html [3] http://msdn.microsoft.com/en-us/library/we1whae7%28VS.80%29.aspx [4] http://www.manpages.info/freebsd/free.3.html