]> git.pld-linux.org Git - packages/gkrellm.git/blob - format-security.patch
- fix format string error
[packages/gkrellm.git] / format-security.patch
1 --- gkrellm-2.3.5/server/main.c~        2010-10-02 18:13:29.000000000 +0200
2 +++ gkrellm-2.3.5/server/main.c 2014-01-02 13:55:48.722813858 +0100
3 @@ -187,7 +187,7 @@
4         if (log_level & G_LOG_LEVEL_CRITICAL)
5                 facility_priority = LOG_MAKEPRI(LOG_DAEMON, LOG_CRIT);
6  
7 -       syslog(facility_priority, message);
8 +       syslog(facility_priority, "%s", message);
9  #endif // defined(WIN32)
10         } // gkrellmd_syslog_log()
11  
This page took 0.071875 seconds and 3 git commands to generate.