[APR-1645] wlbt: Initialize variables in APF code
authorSrishti Piplani <srishti.p@samsung.com>
Thu, 5 Sep 2019 09:39:23 +0000 (15:09 +0530)
committerKim Gunho <gunho.kim@samsung.com>
Wed, 18 Sep 2019 02:13:41 +0000 (11:13 +0900)
Initialize variables in APF code

Change-Id: Ifbbc1cf2f17a10d3a0625fee967c614cd01d1388
SCSC-Bug-Id: HOST-10860
Signed-off-by: Srishti Piplani <srishti.p@samsung.com>
Signed-off-by: Kim Gunho <gunho.kim@samsung.com>
wifi_hal.cpp

index 8e5d4dcdcd96111cdd41b0c092007ec40e4d2280..638194935155f0b4740c2b5b9bc1dd10c8d66acb 100755 (executable)
@@ -87,14 +87,14 @@ void wifi_socket_set_local_port(struct nl_sock *sock, uint32_t port)
 
 class AndroidPktFilterCommand : public WifiCommand {
     private:
-        const u8* mProgram;
-        u32 mProgramLen;
-        u32* mVersion;
+        const u8* mProgram = NULL;
+        u32 mProgramLen = 0;
+        u32* mVersion = NULL;
         u32* mMaxLen = 0;
-        u32 mSourceOffset;
-        u8 *mHostDestination;
+        u32 mSourceOffset = 0;
+        u8 *mHostDestination = NULL;
         u32 mLength = 0;
-        int mReqType;
+        int mReqType = 0;
     public:
         AndroidPktFilterCommand(wifi_interface_handle handle,
                 u32* version, u32* max_len)