Bug 1037189
Summary: | m4 FTBFS if "-Werror=format-security" flag is used | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Dhiru Kholia <dkholia> |
Component: | m4 | Assignee: | Vitezslav Crhonek <vcrhonek> |
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | rawhide | CC: | bressers, vcrhonek |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | m4-1.4.17-3.fc21 | Doc Type: | Bug Fix |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2014-02-04 11:06:27 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 1038083 |
Description
Dhiru Kholia
2013-12-03 03:20:35 UTC
Fixed by updating to latest upstream: $ diff ./m4-1.4.16/tests/test-xvasprintf.c ./m4-1.4.17/tests/test-xvasprintf.c 2c2 < Copyright (C) 2007-2011 Free Software Foundation, Inc. --- > Copyright (C) 2007-2013 Free Software Foundation, Inc. 96c96,98 < /* Silence gcc warning about zero-length format string. */ --- > /* Silence gcc warning about zero-length format string, > and about "format not a string literal and no format" > (whatever that means) . */ 98c100 < result = xasprintf (empty); --- > result = xasprintf (empty, empty); |