diff options
| author | Pranith Kumar K <pkarampu@redhat.com> | 2017-02-14 20:47:48 +0530 | 
|---|---|---|
| committer | Shyamsundar Ranganathan <srangana@redhat.com> | 2017-02-17 06:46:15 -0500 | 
| commit | 63b7da69967a0c63c6c5a82b6be651c520a5e97c (patch) | |
| tree | d5494dfe01f16c4c45508dbbee609d293a968f2f | |
| parent | e89f575ccdb7efebe34248af6982ebf4579cbab3 (diff) | |
performance/decompounder: Have terminal value in options[]
Absence of terminal values is leading to buffer-over-flow errors in
address sanitizer.
 >BUG: 1422152
 >Change-Id: I769c0e4b5bbb3ef2849b8d1097b9def522ae08d9
 >Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
 >Reviewed-on: https://review.gluster.org/16615
 >Smoke: Gluster Build System <jenkins@build.gluster.org>
 >NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
 >CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
 >Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
 >(cherry picked from commit fca31ae5faa15a02e64143b9efb7e19c3b907c2d)
Change-Id: Ifec6f5b96cfe4c26a039f88649284bcdad5321f6
BUG: 1423070
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: https://review.gluster.org/16652
Smoke: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Shyamsundar Ranganathan <srangana@redhat.com>
| -rw-r--r-- | xlators/performance/decompounder/src/decompounder.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/performance/decompounder/src/decompounder.c b/xlators/performance/decompounder/src/decompounder.c index b899b399152..d3d9b9f7830 100644 --- a/xlators/performance/decompounder/src/decompounder.c +++ b/xlators/performance/decompounder/src/decompounder.c @@ -893,6 +893,7 @@ struct xlator_cbks cbks = {  };  struct volume_options options[] = { +        { .key  = {NULL} },  };  struct xlator_fops fops = {  | 
