From 7b5845aac43e4e6a9fa54690aa333628fc8afa66 Mon Sep 17 00:00:00 2001 From: yury Date: Wed, 1 Jun 2005 07:06:45 +0000 Subject: [PATCH] - fixed jump to wrong label in mds_create_objects() in error path. --- lustre/mds/mds_open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 1.8.3.1