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 901847 Details for
Bug 1025257
vorbis-tools 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]
introduction of a new bug
vorbis-tools-1.4.0-bz1037378.patch (text/plain), 1.17 KB, created by
Marcin Juszkiewicz
on 2014-06-03 15:52:15 UTC
(
hide
)
Description:
introduction of a new bug
Filename:
MIME Type:
Creator:
Marcin Juszkiewicz
Created:
2014-06-03 15:52:15 UTC
Size:
1.17 KB
patch
obsolete
>Index: vorbis-tools-1.4.0/ogg123/status.c >=================================================================== >--- vorbis-tools-1.4.0.orig/ogg123/status.c >+++ vorbis-tools-1.4.0/ogg123/status.c >@@ -148,19 +148,19 @@ int print_statistics_line (stat_format_t > > switch (stats->type) { > case stat_noarg: >- len += sprintf(str+len, stats->formatstr); >+ len += sprintf(str+len, "%s", stats->formatstr); > break; > case stat_intarg: >- len += sprintf(str+len, stats->formatstr, stats->arg.intarg); >+ len += sprintf(str+len, "%s %d", stats->formatstr, stats->arg.intarg); > break; > case stat_stringarg: >- len += sprintf(str+len, stats->formatstr, stats->arg.stringarg); >+ len += sprintf(str+len, "%s %s", stats->formatstr, stats->arg.stringarg); > break; > case stat_floatarg: >- len += sprintf(str+len, stats->formatstr, stats->arg.floatarg); >+ len += sprintf(str+len, "%s %f", stats->formatstr, stats->arg.floatarg); > break; > case stat_doublearg: >- len += sprintf(str+len, stats->formatstr, stats->arg.doublearg); >+ len += sprintf(str+len, "%s %f", stats->formatstr, stats->arg.doublearg); > break; > } >
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
Flags:
kdudka
: review-
Actions:
View
|
Diff
Attachments on
bug 1025257
: 901847