[Hotfix/remove_%n_from_snprintf] Removed "%n" character from snprinf's format string : This is not supported in Android system. #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "hotfix/remove_%n_from_snprintf"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I've found that %n character, which is used to get written bytes to destination string, is not supported on Android systems.
It compiles, but emit "FORTIFY: %n not supported" and crashes.
Remove it, and replace it with return value of snprintf.