-
Notifications
You must be signed in to change notification settings - Fork 85
Home
jim518057 edited this page Oct 14, 2021
·
2 revisions
These days I use this code for try to add functions to support my Android HUAWEI P9. Because my HUAWEI P9 is API level 23, which doesn't have this function in NDK.
When I write a small program for test, It's always cause stack corruption in my Android phone.
After debug and trace, I found at:
char l_mask[16] = {0};
I change this line to: char l_mask[20] = {0};
It looks like work well now.