Skip to content

Commit

Permalink
Fix LogcatTextWriter_Log interpreting messages it logs, potentially w…
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieubourgeois authored and luhenry committed Jul 18, 2018
1 parent d3c15bc commit e73abd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/mono/metadata/icall.c
Original file line number Diff line number Diff line change
Expand Up @@ -7959,7 +7959,7 @@ ves_icall_System_Runtime_InteropServices_WindowsRuntime_UnsafeNativeMethods_Wind
ICALL_EXPORT void
ves_icall_System_IO_LogcatTextWriter_Log (const char *appname, gint32 level, const char *message)
{
g_log (appname, (GLogLevelFlags)level, message);
g_log (appname, (GLogLevelFlags)level, "%s", message);
}

static MonoIcallTableCallbacks icall_table;
Expand Down

0 comments on commit e73abd5

Please sign in to comment.