diff options
-rw-r--r-- | source3/param/loadparm.c | 9 |
1 files changed, 9 insertions, 0 deletions
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"); |