Return-Path: Delivered-To: apmail-httpd-bugs-archive@www.apache.org Received: (qmail 28397 invoked from network); 8 Sep 2004 14:47:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 8 Sep 2004 14:47:26 -0000 Received: (qmail 57552 invoked by uid 500); 8 Sep 2004 14:47:23 -0000 Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 57511 invoked by uid 500); 8 Sep 2004 14:47:23 -0000 Mailing-List: contact bugs-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: "Apache HTTPD Bugs Notification List" Delivered-To: mailing list bugs@httpd.apache.org Received: (qmail 57495 invoked by uid 99); 8 Sep 2004 14:47:23 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [192.18.33.10] (HELO exchange.sun.com) (192.18.33.10) by apache.org (qpsmtpd/0.28) with SMTP; Wed, 08 Sep 2004 07:47:21 -0700 Received: (qmail 15401 invoked by uid 50); 8 Sep 2004 14:49:05 -0000 Date: 8 Sep 2004 14:49:05 -0000 Message-ID: <20040908144905.15400.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: bugs@httpd.apache.org Cc: Subject: DO NOT REPLY [Bug 31107] - 0x00 0x1a causes stream corruption with PUT X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=31107 0x00 0x1a causes stream corruption with PUT apache.org@plaza1.net changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From apache.org@plaza1.net 2004-09-08 14:49 ------- ------- Additional Comments From André Malo 2004-09-07 20:43 ------- This looks more like a problem with the CGI program. Did you turn on the binary mode for stdin? Thank you Mr. Malo. You have solved a problem that has been preplexing me for some time. In case others have the same problem, I'll post the c code here on how to set binary mode for stdin. This works for the MinGW compiler. It is pobably a bit different for Microsoft's compiler. #include #include ..... setmode(fileno(stdin),O_BINARY); --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org