From: yury Date: Wed, 1 Jun 2005 07:06:45 +0000 (+0000) Subject: - fixed jump to wrong label in mds_create_objects() in error path. X-Git-Tag: v1_7_100~1232 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=7b5845aac43e4e6a9fa54690aa333628fc8afa66;p=fs%2Flustre-release.git - fixed jump to wrong label in mds_create_objects() in error path. --- diff --git a/lustre/mds/mds_open.c b/lustre/mds/mds_open.c index 1b02268..c16ca63 100644 --- a/lustre/mds/mds_open.c +++ b/lustre/mds/mds_open.c @@ -356,7 +356,7 @@ static int mds_create_objects(struct ptlrpc_request *req, int offset, if (IS_ERR(*handle)) { rc = PTR_ERR(*handle); *handle = NULL; - GOTO(out_oa, rc); + GOTO(out_ids, rc); } mds_objids_from_lmm(*ids, lmm, &mds->mds_dt_desc);