I will partially revert commit 44d0532
Denys Vlasenko
dvlasenk at redhat.com
Tue Jan 24 10:42:49 UTC 2012
On 01/24/2012 11:24 AM, Dmitry V. Levin wrote:
> On Tue, Jan 24, 2012 at 10:10:05AM +0100, Denys Vlasenko wrote:
>> msg = NULL;
>> vasprintf(&msg, fmt, p);
>> if (msg) {
>
> I'd rather replace these three lines with
>
> if (vasprintf(&msg, fmt, p)>= 0) {
We can combine both just to be 200% paranoid-grade sure:
if (vasprintf(&msg, fmt, p) >= 0 && msg) ...
--
vda
More information about the Strace-devel
mailing list