From: Eric Bollengier Date: Thu, 30 Jul 2009 21:38:43 +0000 (+0000) Subject: rename the free_and_null macro X-Git-Tag: Release-5.0.0~429 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8e982697b9de6a6c2b5f0932c51b711c126227aa;p=bacula%2Fbacula rename the free_and_null macro git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@9133 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/lib/mem_pool.h b/bacula/src/lib/mem_pool.h index 3624de8d72..8926b2f2d3 100644 --- a/bacula/src/lib/mem_pool.h +++ b/bacula/src/lib/mem_pool.h @@ -71,7 +71,7 @@ extern void free_pool_memory(POOLMEM *buf); #endif /* Macro to simplify free/reset pointers */ -#define bfree_and_null_pool_memory(a) do{if(a){free_pool_memory(a); (a)=NULL;}} while(0) +#define free_and_null_pool_memory(a) do{if(a){free_pool_memory(a); (a)=NULL;}} while(0) extern void garbage_collect_memory_pool(); extern void close_memory_pool();