when trying to save a project, meshlab crashes. I am on ubuntu maverick, 64bits and this is the output in gdb: gdb /opt/meshlab/meshlab GNU gdb (GDB)
gdb ./meshlab
GNU gdb (GDB) 7.2-ubuntu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /media/vault/Build/meshlab/meshlab/src/distrib/meshlab...(no debugging symbols found)...done.
(gdb) run
Starting program: /media/vault/Build/meshlab/meshlab/src/distrib/meshlab
[Thread debugging using libthread_db enabled]
[New Thread 0x7fffeecc0700 (LWP 7229)]
[New Thread 0x7fffe6afa700 (LWP 7230)]
Current Plugins Dir is: /media/vault/Build/meshlab/meshlab/src/distrib/plugins
Code:
Plugins = { };
Plugins.FilterCreate = { };
Plugins.FilterCreate.box = function (size)
{
var tmpRichPar = new IRichParameterSet();
if (!_initParameterSet("Box",tmpRichPar)) return false;
tmpRichPar.setFloat("size",arguments[0]);
return _applyFilter("Box",tmpRichPar);
};
Plugins.FilterCreate.sphere = function ()
{
var tmpRichPar = new IRichParameterSet();
if (!_initParameterSet("Sphere",tmpRichPar)) return false;
return _applyFilter("Sphere",tmpRichPar);
};
Plugins.FilterCreate.icosahedron = function ()
{
var tmpRichPar = new IRichParameterSet();
if (!_initParameterSet("Icosahedron",tmpRichPar)) return false;
return _applyFilter("Icosahedron",tmpRichPar);
};
Plugins.FilterCreate.dodecahedron = function ()
{
var tmpRichPar = new IRichParameterSet();
if (!_initParameterSet("Dodecahedron",tmpRichPar)) return false;
return _applyFilter("Dodecahedron",tmpRichPar);
};
Plugins.FilterCreate.tetrahedron = function ()
{
var tmpRichPar = new IRichParameterSet();
if (!_initParameterSet("Tetrahedron",tmpRichPar)) return false;
return _applyFilter("Tetrahedron",tmpRichPar);
};
Plugins.FilterCreate.octahedron = function ()
{
var tmpRichPar = new IRichParameterSet();
if (!_initParameterSet("Octahedron",tmpRichPar)) return false;
return _applyFilter("Octahedron",tmpRichPar);
};
Plugins.FilterCreate.cone = function (r0, r1, h, subdiv)
{
var tmpRichPar = new IRichParameterSet();
if (!_initParameterSet("Cone",tmpRichPar)) return false;
tmpRichPar.setFloat("r0",arguments[0]);
tmpRichPar.setFloat("r1",arguments[1]);
tmpRichPar.setFloat("h",arguments[2]);
tmpRichPar.setInt("subdiv",arguments[3]);
return _applyFilter("Cone",tmpRichPar);
};
Plugins.PhotosynthImporterPlugin = { };
Plugins.PhotosynthImporterPlugin.importPhotosynth = function (synthURL, clusterID, saveImages, savePath, addCameraLayer)
{
var tmpRichPar = new IRichParameterSet();
if (!_initParameterSet("Import Photosynth data",tmpRichPar)) return false;
tmpRichPar.setString("synthURL",arguments[0]);
tmpRichPar.setInt("clusterID",arguments[1]);
tmpRichPar.setBool("saveImages",arguments[2]);
tmpRichPar.setString("savePath",arguments[3]);
tmpRichPar.setBool("addCameraLayer",arguments[4]);
return _applyFilter("Import Photosynth data",tmpRichPar);
};
Plugins.ExtraSamplePlugin = { };
Plugins.ExtraSamplePlugin.randomVerticesDisplacement = function (UpdateNormals, Displacement)
{
var tmpRichPar = new IRichParameterSet();
if (!_initParameterSet("Random vertex displacement",tmpRichPar)) return false;
tmpRichPar.setBool("UpdateNormals",arguments[0]);
tmpRichPar.setAbsPerc("Displacement",arguments[1]);
return _applyFilter("Random vertex displacement",tmpRichPar);
};
Reading Param with name MeshLab::Appearance::backgroundBotColor : RichColor
Reading Param with name MeshLab::Appearance::backgroundTopColor : RichColor
Reading Param with name MeshLab::Appearance::baseLightAmbientColor : RichColor
Reading Param with name MeshLab::Appearance::baseLightDiffuseColor : RichColor
Reading Param with name MeshLab::Appearance::baseLightSpecularColor : RichColor
Reading Param with name MeshLab::Appearance::fancyBLightDiffuseColor : RichColor
Reading Param with name MeshLab::Appearance::fancyFLightDiffuseColor : RichColor
Reading Param with name MeshLab::Appearance::logAreaColor : RichColor
Reading Param with name MeshLab::Appearance::pointDistanceAttenuation : RichBool
Reading Param with name MeshLab::Appearance::pointSize : RichFloat
Reading Param with name MeshLab::Appearance::pointSmooth : RichBool
Reading Param with name MeshLab::Appearance::textureMagFilter : RichEnum
Reading Param with name MeshLab::Appearance::textureMinFilter : RichEnum
Reading Param with name MeshLab::Decoration::AreaHistParam : RichBool
Reading Param with name MeshLab::Decoration::BoxRatio : RichFloat
Reading Param with name MeshLab::Decoration::CameraInfoType : RichEnum
Reading Param with name MeshLab::Decoration::CameraShowFrustum : RichBool
Reading Param with name MeshLab::Decoration::CubeMapPath : RichString
Reading Param with name MeshLab::Decoration::FixedHistMaxParam : RichFloat
Reading Param with name MeshLab::Decoration::FixedHistMinParam : RichFloat
Reading Param with name MeshLab::Decoration::FixedHistWidthParam : RichFloat
Reading Param with name MeshLab::Decoration::GridMajor : RichFloat
Reading Param with name MeshLab::Decoration::GridMinor : RichFloat
Reading Param with name MeshLab::Decoration::HistBinNumParam : RichInt
Reading Param with name MeshLab::Decoration::NormalLength : RichFloat
Reading Param with name MeshLab::Decoration::SSAORadius : RichFloat
Reading Param with name MeshLab::Decoration::ShadowIntensityVal : RichDynamicFloat
Reading Param with name MeshLab::Decoration::ShadowMethod : RichEnum
Reading Param with name MeshLab::Decoration::TextureStyle : RichBool
Reading Param with name MeshLab::Decoration::UseFixedHistParam : RichBool
Reading Param with name MeshLab::Decoration::VertDotSize : RichDynamicFloat
Shader directory found '/media/vault/Build/meshlab/meshlab/src/distrib/shaders', and it contains 19 gdp files
Shader directory found '/media/vault/Build/meshlab/meshlab/src/distrib/shaders/shadersrm', and it contains 5 rfx files
[New Thread 0x7fffd3e9a700 (LWP 7231)]
[New Thread 0x7fffd3699700 (LWP 7232)]
[New Thread 0x7fffd2e98700 (LWP 7233)]
[New Thread 0x7fffd2697700 (LWP 7234)]
[New Thread 0x7fffd1e96700 (LWP 7235)]
[New Thread 0x7fffd1695700 (LWP 7236)]
[New Thread 0x7fffd0e94700 (LWP 7237)]
[New Thread 0x7fffcbfff700 (LWP 7238)]
[Thread 0x7fffd2e98700 (LWP 7233) exited]
[Thread 0x7fffd0e94700 (LWP 7237) exited]
[Thread 0x7fffd3699700 (LWP 7232) exited]
[Thread 0x7fffcbfff700 (LWP 7238) exited]
[Thread 0x7fffd1695700 (LWP 7236) exited]
[Thread 0x7fffd2697700 (LWP 7234) exited]
[Thread 0x7fffd3e9a700 (LWP 7231) exited]
[New Thread 0x7fffd3e9a700 (LWP 7239)]
[New Thread 0x7fffd2697700 (LWP 7240)]
[New Thread 0x7fffd1695700 (LWP 7241)]
[New Thread 0x7fffcbfff700 (LWP 7242)]
[New Thread 0x7fffd3699700 (LWP 7243)]
[Thread 0x7fffcbfff700 (LWP 7242) exited]
[Thread 0x7fffd2697700 (LWP 7240) exited]
[Thread 0x7fffd1e96700 (LWP 7235) exited]
[Thread 0x7fffd3699700 (LWP 7243) exited]
[Thread 0x7fffd1695700 (LWP 7241) exited]
[New Thread 0x7fffd1695700 (LWP 7244)]
[Thread 0x7fffd1695700 (LWP 7244) exited]
[New Thread 0x7fffd1695700 (LWP 7245)]
[New Thread 0x7fffd3699700 (LWP 7246)]
[New Thread 0x7fffd1e96700 (LWP 7247)]
[New Thread 0x7fffd2697700 (LWP 7248)]
[New Thread 0x7fffd2e98700 (LWP 7249)]
[New Thread 0x7fffd0e94700 (LWP 7250)]
[New Thread 0x7fffcbfff700 (LWP 7251)]
[New Thread 0x7fffcb70f700 (LWP 7252)]
[New Thread 0x7fffcaf0e700 (LWP 7253)]
[Thread 0x7fffcaf0e700 (LWP 7253) exited]
[Thread 0x7fffd1e96700 (LWP 7247) exited]
[Thread 0x7fffd1695700 (LWP 7245) exited]
[Thread 0x7fffd3e9a700 (LWP 7239) exited]
[Thread 0x7fffd3699700 (LWP 7246) exited]
[Thread 0x7fffd0e94700 (LWP 7250) exited]
[Thread 0x7fffd2697700 (LWP 7248) exited]
[Thread 0x7fffcbfff700 (LWP 7251) exited]
[Thread 0x7fffd2e98700 (LWP 7249) exited]
[New Thread 0x7fffd2e98700 (LWP 7254)]
[Thread 0x7fffd2e98700 (LWP 7254) exited]
[New Thread 0x7fffd2e98700 (LWP 7255)]
[Thread 0x7fffcb70f700 (LWP 7252) exited]
[New Thread 0x7fffcb70f700 (LWP 7256)]
[Thread 0x7fffcb70f700 (LWP 7256) exited]
[New Thread 0x7fffcb70f700 (LWP 7257)]
[New Thread 0x7fffcbfff700 (LWP 7258)]
[New Thread 0x7fffd2697700 (LWP 7259)]
[New Thread 0x7fffd0e94700 (LWP 7260)]
[New Thread 0x7fffd3e9a700 (LWP 7261)]
[New Thread 0x7fffd3699700 (LWP 7262)]
[New Thread 0x7fffd1e96700 (LWP 7263)]
[New Thread 0x7fffd1695700 (LWP 7264)]
[Thread 0x7fffd1e96700 (LWP 7263) exited]
[Thread 0x7fffd3e9a700 (LWP 7261) exited]
[Thread 0x7fffcb70f700 (LWP 7257) exited]
[Thread 0x7fffd0e94700 (LWP 7260) exited]
[Thread 0x7fffd2e98700 (LWP 7255) exited]
[Thread 0x7fffcbfff700 (LWP 7258) exited]
[Thread 0x7fffd1695700 (LWP 7264) exited]
[Thread 0x7fffd2697700 (LWP 7259) exited]
[New Thread 0x7fffd2697700 (LWP 7265)]
[Thread 0x7fffd3699700 (LWP 7262) exited]
[New Thread 0x7fffd3699700 (LWP 7266)]
[New Thread 0x7fffd1695700 (LWP 7267)]
[Thread 0x7fffd2697700 (LWP 7265) exited]
Program received signal SIGSEGV, Segmentation fault.
0x00007ffff5fab8d3 in QWidget::windowTitle() const ()
from /usr/lib/libQtGui.so.4
tired the svn version and its the same result
Confirmed.
We are patching it...
thanks!