Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 835718 Details for
Bug 1036999
berusky2 FTBFS if "-Werror=format-security" flag is used
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
FTBFS fix
berusky2-format-security.patch (text/plain), 992 bytes, created by
Dhiru Kholia
on 2013-12-12 10:19:39 UTC
(
hide
)
Description:
FTBFS fix
Filename:
MIME Type:
Creator:
Dhiru Kholia
Created:
2013-12-12 10:19:39 UTC
Size:
992 bytes
patch
obsolete
>diff --git a/src/komat/Berusky3d.cpp b/src/komat/Berusky3d.cpp >index 57d1d38..14abdf7 100644 >--- a/src/komat/Berusky3d.cpp >+++ b/src/komat/Berusky3d.cpp >@@ -358,7 +358,7 @@ void kprintfl(char log, const char *p_text, ...) > vsprintf(text, p_text, argumenty); > va_end(argumenty); > >- fprintf(stderr, text); >+ fprintf(stderr, "%s", text); > > if (log && p_ber->debug_file) { > fputs(text, p_ber->debug_file); >diff --git a/src/komat/Ddx.cpp b/src/komat/Ddx.cpp >index 56b77d3..baecec0 100644 >--- a/src/komat/Ddx.cpp >+++ b/src/komat/Ddx.cpp >@@ -491,7 +491,7 @@ void tiskni_chybu(int line, char *p_file, char *p_text, ...) > va_end(argumenty); > > strcat(text1, text); >- fprintf(stderr, text1); >+ fprintf(stderr, "%s", text1); > > assert(0); > exit(-1); >@@ -510,7 +510,7 @@ void tiskni_chybu_bez_exit(int line, char *p_file, char *p_text, ...) > va_end(argumenty); > > strcat(text1, text); >- fprintf(stderr, text1); >+ fprintf(stderr, "%s", text1); > } > > void mfree(void **p_mem)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1036999
: 835718 |
835719