diff options
author | Alisher Alikhodjaev <alisher@google.com> | 2021-10-19 16:36:26 -0700 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2022-03-05 01:55:03 +0800 |
commit | 5da34b593cc358249f2a94edce3ba58c8dd24118 (patch) | |
tree | 744353abfd2ce92809ab5b589cfc18b722a31fb8 /halimpl/tml | |
parent | 0c80989aef01b4d528739fc2a46bae95d055536f (diff) |
Use after free in phTmlNfc_TmlThreadHEADsugisawa-pn5xx
Bug: 197353344
Test: build ok
Merged-In: Id6323fd3f0588972dba3b7654435c171d6f5279b
Change-Id: I1f318ae8f0263177040e10baa25952c1accdea21
(cherry picked from commit 647f3fcc75511c6f05e1670d2457b0d93c13abdf)
Merged-In:I1f318ae8f0263177040e10baa25952c1accdea21
Diffstat (limited to 'halimpl/tml')
-rwxr-xr-x | halimpl/tml/phTmlNfc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/halimpl/tml/phTmlNfc.cc b/halimpl/tml/phTmlNfc.cc index 9d15561..4a9be63 100755 --- a/halimpl/tml/phTmlNfc.cc +++ b/halimpl/tml/phTmlNfc.cc @@ -161,7 +161,7 @@ NFCSTATUS phTmlNfc_Init(pphTmlNfc_Config_t pConfig) { /* Clean up all the TML resources if any error */ if (NFCSTATUS_SUCCESS != wInitStatus) { /* Clear all handles and memory locations initialized during init */ - phTmlNfc_CleanUp(); + phTmlNfc_Shutdown_CleanUp(); } return wInitStatus; |