diff options
| author | Kiran Kumar Lokere <klokere@codeaurora.org> | 2016-08-26 18:09:20 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-09-02 18:23:44 -0700 |
| commit | ea85ee0516677f44089221a2f58aa3c01bcf9840 (patch) | |
| tree | 9705e200d82b08af762182792550152e9f7122e0 | |
| parent | 9e58d232466b070b6373b33a9e5cd3623372278f (diff) | |
qcacld-3.0: Correct the country code validation check
Country code comparison result is checked against true value,
but the comparison result is non-zero if the country code is
valid, hence checking the result against true fails and do
not set the country code.
Correct the conditional logic to check if the given country
valid or not.
Change-Id: Id893cfec8571939e4e455fa35ea95310f4c77263
CRs-Fixed: 1060242
| -rw-r--r-- | core/sme/src/common/sme_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sme/src/common/sme_api.c b/core/sme/src/common/sme_api.c index 55b466648655..4f70266c9b64 100644 --- a/core/sme/src/common/sme_api.c +++ b/core/sme/src/common/sme_api.c @@ -7540,7 +7540,7 @@ QDF_STATUS sme_handle_change_country_code(tpAniSirGlobal pMac, void *pMsgBuf) * if the reset Supplicant country code command is triggered, * enable 11D, reset the country code and return */ - if (true != + if (false == qdf_mem_cmp(pMsg->countryCode, SME_INVALID_COUNTRY_CODE, 2)) { pMac->roam.configParam.Is11dSupportEnabled = pMac->roam.configParam.Is11dSupportEnabledOriginal; |
