Skip to content
Prev 6256 / 10988 Next

[Rcpp-devel] Rcpp-devel] What is the best practice to expose a C structure from 3rd party library into R?

on: Tue, 23 Jul 2013 11:37:25 -0500
Dirk Eddelbuettel <edd at debian.org> wrote:

            
According to the C standard, it is safe to call free on a null pointer. Similarly, according to the C++ standard, it is safe to call 'delete' on a null pointer.

Thus there is no need ever to test a pointer for null before free-ing/delete-ing. 

However, it *is* good practice to assign null to a pointer *after* free-ing/delete-ing, since that ensures that any subsequent calls to free/delete will be safe.

What is dangerous is calling free/delete twice on the same *non-null* pointer.

Regards,
Steve

Steve Jaffe
sjaffe at riskspan.com