1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 09:47:13 +00:00

Prevent crash

This commit is contained in:
M66B 2022-04-13 17:49:29 +02:00
parent fc4ced56f4
commit c36104f030

View file

@ -13,7 +13,7 @@
void log_android(int prio, const char *fmt, ...) {
if (prio >= ANDROID_LOG_DEBUG) {
char line[1024];
char line[4096];
va_list argptr;
va_start(argptr, fmt);
vsprintf(line, fmt, argptr);