From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6738 invoked by alias); 21 Nov 2006 15:13:37 -0000 Received: (qmail 6723 invoked by uid 9447); 21 Nov 2006 15:13:36 -0000 Date: Tue, 21 Nov 2006 15:13:00 -0000 Message-ID: <20061121151336.6721.qmail@sourceware.org> From: agk@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2/lib/config config.c Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2006-11/txt/msg00020.txt.bz2 List-Id: CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: agk@sourceware.org 2006-11-21 15:13:36 Modified files: lib/config : config.c Log message: fix _find_config_node: null parameter is permitted Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/config/config.c.diff?cvsroot=lvm2&r1=1.49&r2=1.50 --- LVM2/lib/config/config.c 2006/11/16 17:36:00 1.49 +++ LVM2/lib/config/config.c 2006/11/21 15:13:36 1.50 @@ -772,7 +772,7 @@ const char *path) { const char *e; - const struct config_node *cn_found; + const struct config_node *cn_found = NULL; while (cn) { /* trim any leading slashes */