From owner-cvs-all@FreeBSD.ORG Sun Jan 18 00:28:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF91216A4CE; Sun, 18 Jan 2004 00:28:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1C3343D53; Sun, 18 Jan 2004 00:28:32 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i0I8SW0B076588; Sun, 18 Jan 2004 00:28:32 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i0I8SWSC076587; Sun, 18 Jan 2004 00:28:32 -0800 (PST) (envelope-from das) Message-Id: <200401180828.i0I8SWSC076587@repoman.freebsd.org> From: David Schultz Date: Sun, 18 Jan 2004 00:28:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdio vfprintf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2004 08:28:33 -0000 das 2004/01/18 00:28:32 PST FreeBSD src repository Modified files: lib/libc/stdio vfprintf.c Log: Fix some bugs affecting the %a and %A format specifiers. Since these are not fully implemented and ifdef'd out, the bugs have never manifested themselves. Specifically: - Fix a memory leak in the case where %a follows another floating-point format. - Make the %a/%A code behave like %e/%E with respect to precision. - It is no longer valid to assume that '-' and '0x' are mutually exclusive. - Address other minor issues. Revision Changes Path 1.61 +16 -6 src/lib/libc/stdio/vfprintf.c