From owner-cvs-src@FreeBSD.ORG Sat May 28 13:15:44 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D62A716A41C; Sat, 28 May 2005 13:15:44 +0000 (GMT) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D9DD43D1D; Sat, 28 May 2005 13:15:44 +0000 (GMT) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j4SDFimh095533; Sat, 28 May 2005 13:15:44 GMT (envelope-from bz@repoman.freebsd.org) Received: (from bz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j4SDFiHh095532; Sat, 28 May 2005 13:15:44 GMT (envelope-from bz) Message-Id: <200505281315.j4SDFiHh095532@repoman.freebsd.org> From: "Bjoern A. Zeeb" Date: Sat, 28 May 2005 13:15:44 +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/sys/netgraph ng_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 May 2005 13:15:45 -0000 bz 2005-05-28 13:15:44 UTC FreeBSD src repository Modified files: sys/netgraph ng_socket.c Log: Fix use of uninitialized variable len in ngd_send. Note: len gets intialized to 0 for sap == NULL case only to make compiler on amd64 happy. This has nothing todo with the former uninitialized use of len in sap != NULL case. Reviewed by: glebius Approved by: pjd (mentor) Revision Changes Path 1.66 +7 -3 src/sys/netgraph/ng_socket.c