Return-Path: X-Original-To: apmail-httpd-dev-archive@www.apache.org Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 733B8175A5 for ; Thu, 3 Sep 2015 00:08:57 +0000 (UTC) Received: (qmail 86339 invoked by uid 500); 3 Sep 2015 00:08:57 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 86259 invoked by uid 500); 3 Sep 2015 00:08:57 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 86249 invoked by uid 99); 3 Sep 2015 00:08:57 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Sep 2015 00:08:57 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 9EF6D18230B for ; Thu, 3 Sep 2015 00:08:56 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=6.31 tests=[none] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id 0CSuJ1LUhXvA for ; Thu, 3 Sep 2015 00:08:51 +0000 (UTC) Received: from node176.itex.at (mail.123x.at [194.242.35.176]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTPS id 09DFF20EFB for ; Thu, 3 Sep 2015 00:08:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by node176.itex.at (Postfix) with ESMTP id BF53C211CF for ; Thu, 3 Sep 2015 02:08:41 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at node176.itex.at Received: from node176.itex.at ([127.0.0.1]) by localhost (node176.itex.at [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WAXJz1f3zotA for ; Thu, 3 Sep 2015 02:08:41 +0200 (CEST) Received: from [10.202.65.180] (CPE-110-146-128-253.knmu.knt.bigpond.net.au [110.146.128.253]) (Authenticated sender: normw@gknw.net) by node176.itex.at (Postfix) with ESMTPSA id A65CF20BC1 for ; Thu, 3 Sep 2015 02:08:40 +0200 (CEST) To: "dev@httpd.apache.org" From: NormW Subject: r1700777 - h2_stream.c Message-ID: <55E78F54.4060603@gknw.net> Date: Thu, 3 Sep 2015 10:07:48 +1000 User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit hi, If not mistaken, on the latest httpd-trunk\modules\http2 update: > D:\Projects\svn\httpd-trunk\modules\http2>svn diff > Index: h2_session.c > =================================================================== > --- h2_session.c (revision 1700915) > +++ h2_session.c (working copy) > @@ -259,8 +259,9 @@ > const nghttp2_frame *frame, void *userp) > { > /* This starts a new stream. */ > + int rv; > (void)ngh2; > - int rv = stream_open((h2_session *)userp, frame->hd.stream_id); > + rv = stream_open((h2_session *)userp, frame->hd.stream_id); > if (rv != NGHTTP2_ERR_CALLBACK_FAILURE) { > /* on_header_cb or on_frame_recv_cb will dectect that stream > does not exist and submit RST_STREAM. */ Otherwise compiles fine. Norm