From owner-svn-src-head@freebsd.org Wed May 31 14:53:51 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2BCCFB7BF33; Wed, 31 May 2017 14:53:51 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFB8D7D882; Wed, 31 May 2017 14:53:50 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4VErobj081900; Wed, 31 May 2017 14:53:50 GMT (envelope-from asomers@FreeBSD.org) Received: (from asomers@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4VEroTW081899; Wed, 31 May 2017 14:53:50 GMT (envelope-from asomers@FreeBSD.org) Message-Id: <201705311453.v4VEroTW081899@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: asomers set sender to asomers@FreeBSD.org using -f From: Alan Somers Date: Wed, 31 May 2017 14:53:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r319336 - head/usr.sbin/bootparamd/bootparamd X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 May 2017 14:53:51 -0000 Author: asomers Date: Wed May 31 14:53:50 2017 New Revision: 319336 URL: https://svnweb.freebsd.org/changeset/base/319336 Log: Fix uninitialized variable in bootparamd.c Restore line that was accidentally deleted in change 318790 Reported by: Coverity CID: 1375855 MFC after: 1 week X-MFC-With: 318790 Sponsored by: Spectra Logic Corp Modified: head/usr.sbin/bootparamd/bootparamd/bootparamd.c Modified: head/usr.sbin/bootparamd/bootparamd/bootparamd.c ============================================================================== --- head/usr.sbin/bootparamd/bootparamd/bootparamd.c Wed May 31 13:44:54 2017 (r319335) +++ head/usr.sbin/bootparamd/bootparamd/bootparamd.c Wed May 31 14:53:50 2017 (r319336) @@ -254,6 +254,7 @@ int blen; info of the file */ if (match) { + fid_len = strlen(fileid); #define AS_FORMAT(d) "%" #d "s" #define REXPAND(d) AS_FORMAT(d) /* Force another preprocessor expansion */ while ( ! res && (fscanf(bpf, REXPAND(INFOLEN), info)) > 0) {