From 8e76781ff2588c7fb6efd8c0a8d944d81eb131e6 Mon Sep 17 00:00:00 2001 From: Rafal Szczesniak Date: Tue, 18 Nov 2003 19:15:29 +0000 Subject: Useful debug message. Patch by metze. rafal (This used to be commit 8b06364b53ea01ec7a21f3fbe86afad02fe21dd8) --- source3/lib/util_str.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index c244a6b34b..a560f61e7c 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -695,9 +695,11 @@ char *StrnCpy_fn(const char *fn, int line,char *dest,const char *src,size_t n) clobber_region(fn, line, dest, n+1); #endif - if (!dest) + if (!dest) { + DEBUG(0,("ERROR: NULL dest in StrnCpy\n")); return(NULL); - + } + if (!src) { *dest = 0; return(dest); -- cgit