X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:to:from:subject:date:message-id:references :mime-version:content-type:content-transfer-encoding; q=dns; s= default; b=hAdFhZjZz2ZPSoWosMbEFDw4O186WGXmqUj+HlwaY6Ubwzy2rSMX8 nflo3Ylqwjaa/H8pNx9GbqVbTzmXvuxQQr1b5Fl04ZoHk3FcdlOACKdPKuwjep5b qnokfeIdhu8i9xEE5wHAVO03P30aiwrbHGWXQuyyTuJLqdRTQUMaw8= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:to:from:subject:date:message-id:references :mime-version:content-type:content-transfer-encoding; s=default; bh=w5w/h4U8/kAw23OmnbmgP+w5ozw=; b=FZLnenSTPHSfWjwwi2m/sVdzzn/O zLIVnepm35Nqlq5cCFNyVguAMp1dJgHIhech8ExmV872g2PWSA6yq6jvIUeoEWvU NsTTUj7oMt9L60STdswe+jMJbDh9xDLaLq/1ffWUMzpejWLuzD8lmCfvkWWAsnvL 4UspP6tFTSeQrk0= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=AWL,BAYES_50,RDNS_NONE,SPF_HELO_PASS,SPF_PASS,URIBL_BLOCKED autolearn=no version=3.3.2 X-HELO: plane.gmane.org To: cygwin AT cygwin DOT com From: Brian Inglis Subject: Re: cygwin64 info.exe Exception: =?utf-8?b?U1RBVFVTX0FDQ0VTU19WSU9MQVRJT04=?= if no info file found Date: Sat, 9 Nov 2013 10:42:16 +0000 (UTC) Lines: 26 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit User-Agent: Loom/3.14 (http://gmane.org/) X-IsSubscribed: yes Brian Inglis SystematicSw.ab.ca> writes: Found problem in man.c line 342 passing NULL manpage_section pointer to strlen() below. Patched by upstream in rev 4901: http://svn.savannah.gnu.org/viewvc?view=rev&root=texinfo&revision=4901 support for MS-Windows screen and keyboard in Info, from eliz Options are to apply that patch, or upgrade to 5.0, .1, or .2 (current). 1 /* man.c: How to read and format man files. 2 $Id: man.c,v 1.14 2008/06/28 08:09:32 gray Exp $ 20 Originally written by Brian Fox Thu May 4 09:17:52 1995. */ 336 #else /* !PIPE_USE_FORK */ 337 /* Cannot fork/exec, but can popen/pclose. */ 338 { 339 FILE *fpipe; 340 char *cmdline = xmalloc (strlen (formatter_args[0]) 341 + strlen (manpage_pagename) 342 + (arg_index > 2 ? strlen (manpage_section) : 0) 343 + 3); -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple