talloc_string_sub2: Don't return NULL if src is empty.
authorKarolin Seeger <kseeger@samba.org>
Wed, 23 Jul 2008 15:07:56 +0000 (17:07 +0200)
committerKarolin Seeger <kseeger@samba.org>
Fri, 25 Jul 2008 07:53:26 +0000 (09:53 +0200)
commit03d66554d1bbd9d6c72a3dd5203e5305343c76b8
treef77e4a5179ebda03b43dc28f2c4928efaaa51ebd
parent167d611b525db6d103a7f83fd5a19792be4e7745
talloc_string_sub2: Don't return NULL if src is empty.

This fixes BUG #5635.

Finished print jobs were not removed from the $PRINTER.tdb file if
"printing=cups".

In print_queue_update, talloc_string_sub2 is used to assemble the
"lprm command". In the case of using "printing=cups", the default
"lprm command" is an empty string. talloc_string_sub2 is called with
this empty string and returns NULL which leads to exiting
print_queue_update without doing the actual print queue update.

Signed-off by Michael Adam <obnox@samba.org>
source/lib/util_str.c