mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
rgw: RGWObjState() initialize memebers
Initialize members at constructor. Fixes coverity issues. Conflicts: src/rgw/rgw_rados.h Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
This commit is contained in:
parent
7eb366c73b
commit
ddb1bb0d5b
@ -130,7 +130,9 @@ struct RGWObjState {
|
||||
bool prefetch_data;
|
||||
|
||||
map<string, bufferlist> attrset;
|
||||
RGWObjState() : is_atomic(false), has_attrs(0), exists(false), epoch(0), fake_tag(false), has_manifest(false), prefetch_data(false) {}
|
||||
RGWObjState() : is_atomic(false), has_attrs(0), exists(false),
|
||||
size(0), mtime(0), epoch(0), fake_tag(false), has_manifest(false),
|
||||
has_data(false), prefetch_data(false) {}
|
||||
|
||||
bool get_attr(string name, bufferlist& dest) {
|
||||
map<string, bufferlist>::iterator iter = attrset.find(name);
|
||||
|
Loading…
Reference in New Issue
Block a user