public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Patch for run-1.3.0-1 core dump
@ 2013-08-10 17:35 foo
  2013-08-12 14:22 ` Charles Wilson
  0 siblings, 1 reply; 10+ messages in thread
From: foo @ 2013-08-10 17:35 UTC (permalink / raw)
  To: cygwin

Hi,

Whenever I execute run.exe, it generates run.exe.stackdump.

At line 370 in run.c, run2_freeargv() tries to free newargv, and
run2_freeqrgv() expects that newargv is terminated by NULL. However,
in shifting newargv at line 253-256, it fails to shift NULL
terminator. Therefore, run2_freeargv() frees memory illegally.
The following patch is a workaround.

--- run.c.old
+++ run.c.new
@@ -252,7 +252,7 @@
       newargv = run2_dupargv (argv);
       /* discard newargv[0] and shift up */
       free (newargv[0]);
-      for (newargc = 1; newargc < argc; newargc++)
+      for (newargc = 1; newargv[newargc-1] != NULL; newargc++)
          newargv[newargc-1] = newargv[newargc];
       newargc = argc - 1;


Regards,

---
   ggl329

--
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

^ permalink raw reply	[flat|nested] 10+ messages in thread
* Re: Patch for run-1.3.0-1 core dump
@ 2014-06-09 15:47 Patrick Herbst
  0 siblings, 0 replies; 10+ messages in thread
From: Patrick Herbst @ 2014-06-09 15:47 UTC (permalink / raw)
  To: cygwin

>>
>> On 3/20/2014 8:57 AM, Patrick Herbst wrote:
>>
>>> On 2/18/2014 4:16 AM, Corinna Vinschen wrote:
>>> Did my earlier patch get included?  I haven't seen a "run" new version
>>> yet.
>>>
>>> http://www.cygwin.com/ml/cygwin/2013-12/msg00006.html
>>>
>>> My patch was the one that properly quote arguments.  Maybe let's start
>>> with that before putting new stuff underneath it.  From Chuck: "I'll
>>> roll a new update fairly soon."
>>
>>
>> http://www.cygwin.com/ml/cygwin/2013-12/msg00045.html
>>
>> I'm still looking for a released fix for this too.  Thus far I've been
>> using run 1.2.
>>
>> Any word on this?
>
>
>
> In the mean time, you can run it from /usr/local/bin if you like:
>
> wget -O RUN-patch.txt 'http://pastebin.com/download.php?i=4SSPDGQh'
> export CVSROOT=:pserver:anoncvs@cygwin.com:/cvs/cygwin-apps
> cvs checkout run
> cd run
> patch -p0 < ../RUN-patch.txt
> autoreconf -vif
> ./configure --prefix=/usr/local
> make
> make install
>
> You end up with:
> /usr/local/bin/run.exe
> /usr/local/share/man/man1/run.1

Ok So run.exe has not been updated even though patches have been submitted.

Can this be released yet??

Current version 1.3 produces a stackdump every . single . time . it runs.

what is the test procedure for this application??

--
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

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-06-09 15:47 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-10 17:35 Patch for run-1.3.0-1 core dump foo
2013-08-12 14:22 ` Charles Wilson
2014-02-18  3:53   ` Jon TURNEY
2014-02-18  6:13     ` Charles Wilson
2014-02-18  9:16     ` Corinna Vinschen
2014-02-18  9:35       ` Corinna Vinschen
2014-02-20  1:18         ` Max Polk
2014-03-20 15:03           ` Patrick Herbst
2014-03-21  4:49             ` Max Polk
2014-06-09 15:47 Patrick Herbst

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).