From 653fb0f2bbfb5f6743adcf87ff81cf7948ebe17e Mon Sep 17 00:00:00 2001 From: phil Date: Thu, 9 Oct 2003 06:53:29 +0000 Subject: [PATCH] - fix uninitialized variable warnings - minor formatting - add assertion to mdc_clear_open_replay_data, to help hunt freed-too-early open request --- lustre/lov/lov_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/lov/lov_log.c b/lustre/lov/lov_log.c index 6a91d80..dd56a98 100644 --- a/lustre/lov/lov_log.c +++ b/lustre/lov/lov_log.c @@ -61,7 +61,7 @@ int lov_llog_open(struct obd_device *obd, struct obd_device *disk_obd, { struct lov_obd *lov = &obd->u.lov; - int i, rc; + int i, rc = 0; ENTRY; for (i = 0; i < lov->desc.ld_tgt_count; i++) { -- 1.8.3.1