summaryrefslogtreecommitdiff
path: root/source3/registry/regfio.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-07-16 02:20:34 +0200
committerGünther Deschner <gd@samba.org>2010-07-16 02:20:34 +0200
commit914fd13eddef5cd917a10da1816565acfaa5fd57 (patch)
tree01da45a29c5f129ab656e29401fac784632870a5 /source3/registry/regfio.c
parent196b4e83424c65f8d56ef17e5fca1dfb11c9cf2b (diff)
downloadsamba-914fd13eddef5cd917a10da1816565acfaa5fd57.tar.gz
samba-914fd13eddef5cd917a10da1816565acfaa5fd57.tar.bz2
samba-914fd13eddef5cd917a10da1816565acfaa5fd57.zip
s3-registry: use some prs macros to the only place where they are used.
Guenther
Diffstat (limited to 'source3/registry/regfio.c')
-rw-r--r--source3/registry/regfio.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/registry/regfio.c b/source3/registry/regfio.c
index 7a362d205e..7ab262d822 100644
--- a/source3/registry/regfio.c
+++ b/source3/registry/regfio.c
@@ -32,6 +32,12 @@
*
******************************************************************/
+#if defined(PARANOID_MALLOC_CHECKER)
+#define PRS_ALLOC_MEM(ps, type, count) (type *)prs_alloc_mem_((ps),sizeof(type),(count))
+#else
+#define PRS_ALLOC_MEM(ps, type, count) (type *)prs_alloc_mem((ps),sizeof(type),(count))
+#endif
+
/*******************************************************************
Reads or writes an NTTIME structure.
********************************************************************/