diff options
Diffstat (limited to 'xlators/debug')
-rw-r--r-- | xlators/debug/io-stats/src/io-stats.c | 3 | ||||
-rw-r--r-- | xlators/debug/trace/src/trace.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/xlators/debug/io-stats/src/io-stats.c b/xlators/debug/io-stats/src/io-stats.c index 1492c355e..eb950a33d 100644 --- a/xlators/debug/io-stats/src/io-stats.c +++ b/xlators/debug/io-stats/src/io-stats.c @@ -1393,7 +1393,7 @@ process_call_list (io_stats_private_t *priv, const char *list, int include) int32_t init (xlator_t *this) { - dict_t *options = this->options; + dict_t *options = NULL; char *includes = NULL, *excludes = NULL; io_stats_private_t *priv = NULL; size_t size = 0; @@ -1415,6 +1415,7 @@ init (xlator_t *this) priv = CALLOC (1, sizeof(*priv)); ERR_ABORT (priv); + options = this->options; includes = data_to_str (dict_get (options, "include-ops")); excludes = data_to_str (dict_get (options, "exclude-ops")); diff --git a/xlators/debug/trace/src/trace.c b/xlators/debug/trace/src/trace.c index 6fe27c635..b4fcf29e1 100644 --- a/xlators/debug/trace/src/trace.c +++ b/xlators/debug/trace/src/trace.c @@ -2423,7 +2423,7 @@ process_call_list (const char *list, int include) int32_t init (xlator_t *this) { - dict_t *options = this->options; + dict_t *options = NULL; char *includes = NULL, *excludes = NULL; if (!this) @@ -2440,6 +2440,7 @@ init (xlator_t *this) } + options = this->options; includes = data_to_str (dict_get (options, "include-ops")); excludes = data_to_str (dict_get (options, "exclude-ops")); |