From owner-svn-src-head@freebsd.org Mon Feb 27 03:17:29 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 B75FCCEF95B for ; Mon, 27 Feb 2017 03:17:29 +0000 (UTC) (envelope-from wlosh@bsdimp.com) Received: from mail-io0-x234.google.com (mail-io0-x234.google.com [IPv6:2607:f8b0:4001:c06::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8F6326AB for ; Mon, 27 Feb 2017 03:17:29 +0000 (UTC) (envelope-from wlosh@bsdimp.com) Received: by mail-io0-x234.google.com with SMTP id 90so20528353ios.1 for ; Sun, 26 Feb 2017 19:17:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bsdimp-com.20150623.gappssmtp.com; s=20150623; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=OSQXsYM2pIBfcwdT+OEgnKYPH+X0oO5kyA49I61uNMI=; b=Nkd4Pc3XnnA63jCpHlJARCbw/PVQ1yqrEwgzk6YkTesBzLtl6xAeCi3WQLcFx1+xO0 qm9WiUwT3pfxQ26Czd5tOhdH/1PosxrQG7g5xneUmYffyS9aTW9C+Wd6ZZzwv6wxPK9z GAkbvsyPmhzmaw2uLQrdiZbtu3r5YrvvUT32esDuZL0gMLD/zzxGSM8pLOmPLSVqXILZ xesuXYEAtPyVoI5jyqi2kIL5GZtA/2r/nkgQqClYoK8x0ARF21N8GxryBuaW5+mtNN6m yQn16pqD0NzjpXkHKZzfsNErozbU0qX2Djy3N8KD4j/mIroTlOln3mISjUIxq8XIDKNN gBXg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=OSQXsYM2pIBfcwdT+OEgnKYPH+X0oO5kyA49I61uNMI=; b=EXIHMu9EtWmUL7UBbp1a55Uyj/GEOZky6kXDbARZIHldzDA0KMiK6aJhSAJO7LnCzy 3gqqNCUgXiHo0cJHtwGrBJtzy44wi5Ozy/UFbvob7Kh/CbK+ba4wYlp2HRRSLffo7Or2 tjzXjQ3C5aUphofaavAQy4HdV1F+A0Jdfbt1kF1RjA66U6Y07233/GM3/wuqnaUEcR3H MAQDM4HiavlhBwdDgcofCkkLmSIdiRB9DxSkk8jYNsgX+8j4gaA1/WK+hpRAMpLgvOfp X6BvtwXRod7VAhMnWjvXmEXNphbbjBBdzIDxV4cYiDcepXD8VHXE7FKpgGKJDxSXGJmd Oluw== X-Gm-Message-State: AMke39nLFvYayr6A2MT/8KqoYV0Gh4FMXdMS84aGaMzNUmXyw2hFO38PkbzLjvZ2eRlYwRfjuWckYhghYlOPOQ== X-Received: by 10.107.11.216 with SMTP id 85mr12733214iol.0.1488165448860; Sun, 26 Feb 2017 19:17:28 -0800 (PST) MIME-Version: 1.0 Sender: wlosh@bsdimp.com Received: by 10.79.134.129 with HTTP; Sun, 26 Feb 2017 19:17:28 -0800 (PST) X-Originating-IP: [75.104.68.92] In-Reply-To: <201702270237.v1R2bSsC004156@slippy.cwsent.com> References: <404d743b-735b-0605-5ab5-ccb95ce24ad8@FreeBSD.org> <201702270237.v1R2bSsC004156@slippy.cwsent.com> From: Warner Losh Date: Sun, 26 Feb 2017 20:17:28 -0700 X-Google-Sender-Auth: R3OI_ostcF5769l9KOnGcbIbCyM Message-ID: Subject: Re: svn commit: r314322 - head/lib/librss To: Cy Schubert Cc: Pedro Giffuni , src-committers , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 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: Mon, 27 Feb 2017 03:17:29 -0000 > Then why even test for RC being NULL? So rc->rss_bucket_map doesn't dereference a null pointer and core dump maybe? Warner