[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Help-gsl] Re: free
From: |
Jochen Küpper |
Subject: |
[Help-gsl] Re: free |
Date: |
Sun, 11 Jun 2006 20:59:09 +0200 |
X-posted and Followup-To: GSL discuss
John D Lamb <address@hidden> writes:
> Jochen Küpper wrote:
>>> gsl_matrix_alloc and gsl_matrix free behave like alloc and free and
>>> so I guess gsl_matrix_alloc returns 0 on failure and gsl_matrix_free
>>> should not be called with a null pointer.
[...]
>> Actually it should be ok to call free with NULL, just not with any
>> other invalid pointer:
>>
>> ,----[man free]
>> | free() frees the memory space pointed to by ptr, which must
>> have been
>> | returned by a previous call to malloc(), calloc() or realloc().
>> Otherwise,
>> | or if free(ptr) has already been called before, undefined behaviour
>> occurs.
>> | If ptr is NULL, no operation is performed.
>> `----
[...]
> I checked the source code for gsl_matrix_free and it will fail if passed
> a null pointer.
Shouldn't the GSL free-routines be changed like the following patch?
,----
| @@ -74,6 +74,8 @@
| void
| FUNCTION (gsl_block, free) (TYPE (gsl_block) * b)
| {
| - free (b->data);
| - free (b);
| + if(b != 0) {
| + free (b->data);
| + free (b);
| + }
| }
`----
Greetings,
Jochen
--
Einigkeit und Recht und Freiheit http://www.Jochen-Kuepper.de
Liberté, Égalité, Fraternité GnuPG key: CC1B0B4D
(Part 3 you find in my messages before fall 2003.)
- [Help-gsl] Help with GSL Matrices, adarsh, 2006/06/10
- Message not available
- Re: [Help-gsl] Help with GSL Matrices, John D Lamb, 2006/06/11
- Re: [Help-gsl] Help with GSL Matrices, Jochen Küpper, 2006/06/11
- Re: [Help-gsl] Help with GSL Matrices, John D Lamb, 2006/06/11
- free (was: [Help-gsl] Help with GSL Matrices), Jochen Küpper, 2006/06/11
- [Help-gsl] Re: free, John D Lamb, 2006/06/11
- [Help-gsl] Re: free,
Jochen Küpper <=
- [Help-gsl] Re: free, Brian Gough, 2006/06/12
- Re: [Help-gsl] Re: free, John D Lamb, 2006/06/12
- Re: [Help-gsl] Re: free, Jochen Küpper, 2006/06/12
- Re: [Help-gsl] Re: free, Brian Gough, 2006/06/14
Re: [Help-gsl] Help with GSL Matrices, adarsh, 2006/06/11