Fixed the Coverity Scan Report:
CID
1412615 (#1 of 1): Uninitialized scalar field (UNINIT_CTOR)
2. uninit_member: Non-static class member val is not initialized in this constructor nor in any functions that it calls.
Signed-off-by: Jos Collin <jcollin@redhat.com>
};
class ESQueryNodeLeafVal_Int : public ESQueryNodeLeafVal {
- int64_t val;
+ int64_t val{0};
public:
ESQueryNodeLeafVal_Int() {}
bool init(const string& str_val, string *perr) override {