Fix for:
CID
1274323 (#1 of 1): Uninitialized pointer field (UNINIT_CTOR)
uninit_member: Non-static class member perr is not initialized in
this constructor nor in any functions that it calls.
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
map<string, bufferlist> *attrs;
struct rgw_err *perr;
- StatParams() : lastmod(NULL), obj_size(NULL), attrs(NULL) {}
+ StatParams() : lastmod(NULL), obj_size(NULL), attrs(NULL), perr(NULL) {}
} stat_params;
struct ReadParams {