From: Stefan Metzmacher Date: Thu, 29 Mar 2007 08:24:15 +0000 (+0000) Subject: r22008: use string_term_tdb_data() X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~818 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1f047d7e31252481c4ed905e0dfdb791c704adca;p=thirdparty%2Fsamba.git r22008: use string_term_tdb_data() metze --- diff --git a/source/smbd/connection.c b/source/smbd/connection.c index 0442a9441ad..7838c5c23dc 100644 --- a/source/smbd/connection.c +++ b/source/smbd/connection.c @@ -272,11 +272,10 @@ static TDB_DATA* make_pipe_rec_key( struct pipe_open_rec *prec ) snprintf( key_string, sizeof(key_string), "%s/%d/%d", prec->name, procid_to_pid(&prec->pid), prec->pnum ); - if ( (kbuf->dptr = talloc_strdup(prec, key_string)) == NULL ) + *kbuf = string_term_tdb_data(talloc_strdup(prec, key_string)); + if (kbuf->dptr == NULL ) return NULL; - - kbuf->dsize = strlen(key_string)+1; - + return kbuf; }