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:content-type:to:subject:references:date :mime-version:content-transfer-encoding:from:message-id :in-reply-to; q=dns; s=default; b=PO1nZP+jTyvJCc3E6bBk4d6yA/NPMG 5dA4xTGizfrca0mVrTvYMq/6qt+/LC4b9Pn6VHc0yXTfY9eiDnz9Uo6CshM47/nY RbP+VYOCpm/SzjyAfDPYTv2/jQcGzqefP0Rf7YuQfTezIektPuGm+U16vLCYGOjx zcXQeFlQksm4E= 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:content-type:to:subject:references:date :mime-version:content-transfer-encoding:from:message-id :in-reply-to; s=default; bh=SIGFz1WDuEGuZKTIMIGOBpiVdzU=; b=dCKv MraHYc5y8qDFhsEBjrvr96rfl3MPzKqzrCMlWz/MOvNUttgRjKWXHikA1ohAznnr WkG51PLs7gAgopuL21qr4qJgwpVq+Wch8iXP3koLIJWvkBE8f3Q9jOo/yAyYz345 lCZhxRPkqsQO11XDuIytXQYOfKBkOcoe2Y09eU4= 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 X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=AWL,BAYES_05,KHOP_THREADED,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_NO,RP_MATCHES_RCVD,SPF_PASS,TW_NV,TW_VK,TW_VP autolearn=ham version=3.3.1 Content-Type: text/plain; charset=iso-8859-15; format=flowed; delsp=yes To: cygwin AT cygwin DOT com Subject: Re: texlive-install: core dumped References: <51CEC839 DOT 507 AT cornell DOT edu> <51CEE558 DOT 6070104 AT cornell DOT edu> <51CF2925 DOT 2060804 AT cornell DOT edu> <51CF63C4 DOT 4070001 AT cornell DOT edu> <51CF9918 DOT 5020602 AT cornell DOT edu> Date: Sun, 30 Jun 2013 13:50:19 +0200 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: "Helmut Karlowski" Message-ID: In-Reply-To: <51CF9918.5020602@cornell.edu> User-Agent: Opera Mail/12.14 (Win32) Ken Brown, 30.06.2013 04:34:00: >> it later. Is there a database of all styles, fonts etc. for all >> texlive-packages? > > Does http://cygwin.com/packages/ give you what you're looking for? Or > maybe you want texlive.tlpdb, available at > > http://www.ctan.org/tex-archive/systems/texlive/tlnet/tlpkg Not very comfortable, but better than nothing :) > If you want to try debugging this with gdb, the texlive-debuginfo > package contains the files you need. Thanks! Found the bug: In texk/web2c/luatexdir/lua/loslibext.c:649 In 632 static void find_env(lua_State * L) 633 { 634 char *envitem, *envitem_orig; (gdb) 635 char *envkey; 636 char **envpointer; 637 envpointer = environ; 638 lua_getglobal(L, "os"); 639 if (envpointer != NULL && lua_istable(L, -1)) { 640 luaL_checkstack(L, 2, "out of stack space"); 641 lua_pushstring(L, "env"); 642 lua_newtable(L); 643 while (*envpointer) { 644 /* TODO: perhaps a memory leak here */ (gdb) 645 luaL_checkstack(L, 2, "out of stack space"); 646 envitem = xstrdup(*envpointer); 647 envitem_orig = envitem; 648 envkey = envitem; 649 while (*envitem != '=') { 650 envitem++; 651 } 652 *envitem = 0; 653 envitem++; 654 lua_pushstring(L, envkey); (gdb) 655 lua_pushstring(L, envitem); 656 lua_rawset(L, -3); 657 envpointer++; 658 free(envitem_orig); 659 } 660 lua_rawset(L, -3); 661 } 662 lua_pop(L, 1); 663 } It crashes in line 649, because my shell put an item without '=' in the environment, and there is no 0-check in find_env(), which appears to be a good thing. Fixed. -- Helmut Karlowski -- 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