wlan: Stack Canary corruption

Stack canary gets override when longer length data variable is copied
to shorter length stack data variable. This leads to stack check fail
and finally kernel panic.
Stack canary protection is enabled with CC_STACKPROTECTOR_STRONG GCC
compilation flag. With regular protection option this issue will go
unnoticed.

Change-Id: I9f9d15739ea4a09c904e3c4459f2d5e5d2111dca
CRs-Fixed: 938372
diff --git a/CORE/WDA/src/wlan_qct_wda.c b/CORE/WDA/src/wlan_qct_wda.c
index dc5bbea..79b33d0 100644
--- a/CORE/WDA/src/wlan_qct_wda.c
+++ b/CORE/WDA/src/wlan_qct_wda.c
@@ -13293,7 +13293,7 @@
    
    tWDA_CbContext *wdaContext= (tWDA_CbContext *)VOS_GET_WDA_CTXT(pVosContext);
    tpAniSirGlobal pMac = (tpAniSirGlobal)VOS_GET_MAC_CTXT((void *)pVosContext) ;
-   tANI_U32 uUserData; 
+   tANI_U64 uUserData;
 
    VOS_TRACE(VOS_MODULE_ID_WDA, VOS_TRACE_LEVEL_INFO, "Enter:%s", __func__);