octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #44328] segfault on QtHandles::ObjectProxy::fi


From: Mike Miller
Subject: [Octave-bug-tracker] [bug #44328] segfault on QtHandles::ObjectProxy::finalize
Date: Thu, 26 Mar 2015 02:01:55 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0 Iceweasel/35.0.1

Follow-up Comment #7, bug #44328 (project octave):

We do have debug symbols available for all Octave code, I can poke at whatever
you think might be useful.

Anyway, I worked out a couple of minimal examples that demonstrate the
segfault every time on the hydra built Octave:


graphics_toolkit qt
hf = figure ("visible", "off"); reset (hf); close (hf);


or this:


graphics_toolkit qt
hf = figure ();
close (hf);
hf = figure ("visible", "off");
reset (hf);  ## segfault


The following does *not* segfault:


graphics_toolkit qt
hf = figure (); reset (hf); close (hf);
hf = figure ("visible", "off"); close (hf);


IOW, the reset has to be done on a figure created with "visible" = "off", and
it has to be on the same line as a close or after a close has been performed
at least once on any figure.

And of course none of these segfault for me on Debian.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?44328>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]