From 4913f372fc486065a0fc4eeb53f5730aa9980cdf Mon Sep 17 00:00:00 2001 From: ShyamsundarR Date: Wed, 25 Jul 2018 16:45:54 -0400 Subject: sdfs: Fix missing NULL option list tremination Option list for volume_options in sdfs was not NULL terminated. This resulted in a crash when running in lcov based builds. This is rectified by this patch. fixes: bz#1608566 Change-Id: I5d8730f1ae963ed6adf21d970e4921c5d5d92f62 Signed-off-by: ShyamsundarR --- xlators/features/sdfs/src/sdfs.c | 1 + 1 file changed, 1 insertion(+) (limited to 'xlators/features') diff --git a/xlators/features/sdfs/src/sdfs.c b/xlators/features/sdfs/src/sdfs.c index 8f46da3f740..5ddbe78250f 100644 --- a/xlators/features/sdfs/src/sdfs.c +++ b/xlators/features/sdfs/src/sdfs.c @@ -1520,4 +1520,5 @@ struct volume_options options[] = { .tags = {"sdfs"}, .description = "Enable/Disable dentry serialize functionality" }, + { .key = {NULL} }, }; -- cgit