Hi,
I am using secure storage api in my application for storing user id and password. Using “le_secStore_Write” api I am able to write data but not able to read using “le_secStore_Read” api because of below exception
"has exited due to signal 11 (Segmentation fault)"
I spotted the problem. The issue is that store_buff is 10 characters plus a null terminator (so 11 bytes) while mybuf is only allocated as 10 bytes. So the problem is that you can’t read an 11 byte value into a 10 byte buffer.
Hi David,
after correction still I am getting same issue " has exited due to signal 11 (Segmentation fault)."
same issue if I Increased the buffer size more than the actual content size also. Do you have any working example on this?