From: Volker Lendecke Date: Sun, 22 Jun 2008 16:36:37 +0000 (+0200) Subject: Fix an abort in junction_to_local_path X-Git-Tag: samba-3.3.0pre1~820 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=587bd636cb70d09600111ced040adaa55af35d0f;p=thirdparty%2Fsamba.git Fix an abort in junction_to_local_path --- diff --git a/source/smbd/msdfs.c b/source/smbd/msdfs.c index 84ee282372e..df30257fcc9 100644 --- a/source/smbd/msdfs.c +++ b/source/smbd/msdfs.c @@ -1308,7 +1308,7 @@ static bool junction_to_local_path(const struct junction_map *jucn, return False; } - *pp_path_out = talloc_asprintf(conn_out, + *pp_path_out = talloc_asprintf(*conn_out, "%s/%s", lp_pathname(snum), jucn->volume_name);