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 E71A310751 for ; Thu, 12 Dec 2013 15:21:24 +0000 (UTC) Received: (qmail 65364 invoked by uid 500); 12 Dec 2013 15:21:21 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 65352 invoked by uid 500); 12 Dec 2013 15:21:20 -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 65340 invoked by uid 99); 12 Dec 2013 15:21:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Dec 2013 15:21:19 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of prvs=0058802231=micha@lenk.info designates 188.40.85.232 as permitted sender) Received: from [188.40.85.232] (HELO mx.lenk.info) (188.40.85.232) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Dec 2013 15:21:12 +0000 Received: from [192.168.77.232] (port=50939 helo=mail.lenk.info) by mx.lenk.info with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1Vr84Y-0006bk-0u for dev@httpd.apache.org; Thu, 12 Dec 2013 16:21:06 +0100 Received: from [213.144.156.188] (helo=[192.168.2.3]) by mail.lenk.info with esmtpsa (Cipher TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.72 1) id 1Vr84D-0002uH-Ta for ; Thu, 12 Dec 2013 16:20:45 +0100 Message-ID: <52A9D484.9060007@lenk.info> Date: Thu, 12 Dec 2013 16:21:40 +0100 From: Micha Lenk User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20131103 Icedove/17.0.10 MIME-Version: 1.0 To: dev@httpd.apache.org Subject: Re: r->handler being overwritten with mime type References: <26788D42-1957-4175-905E-279A200E5152@sharp.fm> In-Reply-To: <26788D42-1957-4175-905E-279A200E5152@sharp.fm> X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi Graham, Am 12.12.2013 14:28, schrieb Graham Leggett: > Does anyone know offhand where I should be looking for something that > sets a mime type? It seems that something is setting the handler > without checking first to see if the handler has been set already, > and this breaks form login. You could try to chase that down with GDB: - set a breakpoint in line 1044 - run until the breakpoint triggers - add a watchpoint on &r->handler - run until the watchpoint triggers and see where it is... Hope that helps... Cheers, Micha