Fix for:
CID
1351734 (#1 of 1): Uninitialized scalar field (UNINIT_CTOR)
uninit_member: Non-static class member result is not initialized
in this constructor nor in any functions that it calls.
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
static const NotifyOp NOTIFY_OP = NOTIFY_OP_ASYNC_COMPLETE;
static const bool CHECK_FOR_REFRESH = false;
- AsyncCompletePayload() {}
+ AsyncCompletePayload() : result(0) {}
AsyncCompletePayload(const AsyncRequestId &id, int r)
: AsyncRequestPayloadBase(id), result(r) {}