System Information
Ubuntu 13.10, NVIDIA Quadro 1000M
Blender Version
Broken: 2.69.0 r60991
Short description of error
While trying to import a very simple but large svg file I prepared (
), Blender crashes.The svg was originally generated in the browser with d3.js, then saved, read into inkscape 0.48, and from there exported as Plain SVG.
It contains some ~30 graphs (no fill, black stroke) , the markup is dead simple and can be easily read with a text editor.
The crash occurs still inside the python import script, this is the traceback:
Traceback (most recent call last):
File "/opt/blender_downloaded/2.69/scripts/addons/io_curve_svg/__init__.py", line 61, in execute
**self.as_keywords(ignore=("filter_glob",)))
File "/opt/blender_downloaded/2.69/scripts/addons/io_curve_svg/import_svg.py", line 1851, in load
load_svg(filepath)
File "/opt/blender_downloaded/2.69/scripts/addons/io_curve_svg/import_svg.py", line 1843, in load_svg
loader.createGeom(False)
File "/opt/blender_downloaded/2.69/scripts/addons/io_curve_svg/import_svg.py", line 1077, in createGeom
self._doCreateGeom(instancing)
File "/opt/blender_downloaded/2.69/scripts/addons/io_curve_svg/import_svg.py", line 1129, in _doCreateGeom
geom.createGeom(instancing)
File "/opt/blender_downloaded/2.69/scripts/addons/io_curve_svg/import_svg.py", line 1077, in createGeom
self._doCreateGeom(instancing)
File "/opt/blender_downloaded/2.69/scripts/addons/io_curve_svg/import_svg.py", line 1755, in _doCreateGeom
super()._doCreateGeom(False)
File "/opt/blender_downloaded/2.69/scripts/addons/io_curve_svg/import_svg.py", line 1129, in _doCreateGeom
geom.createGeom(instancing)
File "/opt/blender_downloaded/2.69/scripts/addons/io_curve_svg/import_svg.py", line 1077, in createGeom
self._doCreateGeom(instancing)
File "/opt/blender_downloaded/2.69/scripts/addons/io_curve_svg/import_svg.py", line 1200, in _doCreateGeom
bezt = act_spline.bezier_points[-1]
IndexError: bpy_prop_collection[-1]: out of range.Exact steps for others to reproduce the error
- Download and save on your disk
- Open blender (e.g. w/ startup file)
- Go to File > Import > Scalable Vector Graphics (.svg)
- Find and choose the previously downloaded file
- Blender freezes for a few seconds and then crashes