From 3e5efdb05c91dff204967d1e8dd33a86ab2602f2 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Sat, 16 Feb 2002 19:34:58 +0000 Subject: Added comment in lp_string() about debugging memory problems. (This used to be commit 98e97fac17b766a6da658daa1ec40ffaf6f5bb2e) --- source3/param/loadparm.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source3') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index a44b788a5d..8a9987ee1d 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1410,6 +1410,15 @@ static char *lp_string(const char *s) size_t len = s ? strlen(s) : 0; char *ret; + /* The follow debug is useful for tracking down memory problems + especially if you have an inner loop that is calling a lp_*() + function that returns a string. Perhaps this debug should be + present all the time? */ + +#if 0 + DEBUG(10, ("lp_string(%s)\n", s)); +#endif + if (!lp_talloc) lp_talloc = talloc_init_named("lp_talloc"); -- cgit