From owner-svn-src-head@freebsd.org Tue Nov 21 16:38:32 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 0E89CDF3A36; Tue, 21 Nov 2017 16:38:32 +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 CFE9875425; Tue, 21 Nov 2017 16:38:31 +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 vALGcUvs058510; Tue, 21 Nov 2017 16:38:30 GMT (envelope-from asomers@FreeBSD.org) Received: (from asomers@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vALGcUFt058509; Tue, 21 Nov 2017 16:38:30 GMT (envelope-from asomers@FreeBSD.org) Message-Id: <201711211638.vALGcUFt058509@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: asomers set sender to asomers@FreeBSD.org using -f From: Alan Somers Date: Tue, 21 Nov 2017 16:38:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r326065 - head/sys/cam X-SVN-Group: head X-SVN-Commit-Author: asomers X-SVN-Commit-Paths: head/sys/cam X-SVN-Commit-Revision: 326065 X-SVN-Commit-Repository: base 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.25 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: Tue, 21 Nov 2017 16:38:32 -0000 Author: asomers Date: Tue Nov 21 16:38:30 2017 New Revision: 326065 URL: https://svnweb.freebsd.org/changeset/base/326065 Log: Fix uninitialized variable from 326034 Reported by: Coverity CID: 1382887 MFC after: 20 days X-MFC-With: 326034 Sponsored by: Spectra Logic Corp Modified: head/sys/cam/cam.c Modified: head/sys/cam/cam.c ============================================================================== --- head/sys/cam/cam.c Tue Nov 21 16:03:21 2017 (r326064) +++ head/sys/cam/cam.c Tue Nov 21 16:38:30 2017 (r326065) @@ -235,7 +235,8 @@ cam_strmatch(const u_int8_t *str, const u_int8_t *patt return (1); } else if (*pattern == '[') { int negate_range, ok; - uint8_t pc, sc; + uint8_t pc = UCHAR_MAX; + uint8_t sc; ok = 0; sc = *str++;