From 65f52bfa965bcffca1157a3ce0711133dc28161b Mon Sep 17 00:00:00 2001 From: "Anand V. Avati" Date: Mon, 15 Jun 2009 02:57:25 -0700 Subject: read-ahead: fix warning by initializing conf = NULL --- xlators/performance/read-ahead/src/read-ahead.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xlators/performance') diff --git a/xlators/performance/read-ahead/src/read-ahead.c b/xlators/performance/read-ahead/src/read-ahead.c index cb635e275..c4052e54c 100644 --- a/xlators/performance/read-ahead/src/read-ahead.c +++ b/xlators/performance/read-ahead/src/read-ahead.c @@ -792,7 +792,7 @@ ra_ftruncate (call_frame_t *frame, xlator_t *this, fd_t *fd, off_t offset) int init (xlator_t *this) { - ra_conf_t *conf; + ra_conf_t *conf = NULL; dict_t *options = this->options; char *page_count_string = NULL; int32_t ret = -1; -- cgit