From owner-cvs-all@FreeBSD.ORG Tue Apr 15 23:29:52 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29CEC1065671; Tue, 15 Apr 2008 23:29:52 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E7B218FC0C; Tue, 15 Apr 2008 23:29:51 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m3FNTpl7036810; Tue, 15 Apr 2008 23:29:51 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m3FNTpVf036806; Tue, 15 Apr 2008 23:29:51 GMT (envelope-from cperciva) Message-Id: <200804152329.m3FNTpVf036806@repoman.freebsd.org> From: Colin Percival Date: Tue, 15 Apr 2008 23:29:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libfetch common.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 15 Apr 2008 23:29:52 -0000 cperciva 2008-04-15 23:29:51 UTC FreeBSD src repository Modified files: lib/libfetch common.c Log: Fix one-byte buffer overflow: NUL gets written to the buffer, but isn't counted in the width specification in scanf. This is not a security problem, since this function is only used to parse a user's configuration file. Submitted by: Joerg Sonnenberger Obtained from: dragonflybsd MFC after: 1 week Revision Changes Path 1.56 +1 -1 src/lib/libfetch/common.c