$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Segmentation fault when throwing exception?
From: Adam Romanek (a.romanek_at_[hidden])
Date: 2011-05-17 09:51:41
On 05/17/2011 03:36 PM, Igor R wrote:
> fclose is just a bad deleter that doesn't work correctly with NULL,
correct, according to the C++ standard, a deleter should behave well
with NULL passed as the pointer value. therefore, fclose() won't work here.
wbr,
Adam Romanek