]> git.sur5r.net Git - bacula/bacula/commitdiff
rename the free_and_null macro
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 30 Jul 2009 21:38:43 +0000 (21:38 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 30 Jul 2009 21:38:43 +0000 (21:38 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@9133 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/lib/mem_pool.h

index 3624de8d729ca615c8c14042011e4442f6bbe70b..8926b2f2d3cd8a97da48eedb6320b99ea332db45 100644 (file)
@@ -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();