diff options
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/print_svid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/print_svid.c b/source3/printing/print_svid.c index 07b157bcd9..c7a8c9413d 100644 --- a/source3/printing/print_svid.c +++ b/source3/printing/print_svid.c @@ -90,7 +90,7 @@ static void populate_printers(void) /* add it to the cache */ if ((ptmp = malloc(sizeof (*ptmp))) != NULL) { ZERO_STRUCTP(ptmp); - if((ptmp->name = strdup(name)) == NULL) + if((ptmp->name = SMB_STRDUP(name)) == NULL) DEBUG(0,("populate_printers: malloc fail in strdup !\n")); ptmp->next = printers; printers = ptmp; |