GNOME Bugzilla – Bug 594041
We should support XLSurfacePlot on ODF export
Last modified: 2009-09-04 00:20:16 UTC
When trying to save the file of bug 593937 as an odf file, Gnumeric crashes. ** (/home/aguelzow/gnumeric/bin/gnumeric:26607): CRITICAL **: gnm_go_data_get_expr: assertion `dep != NULL' failed ** (/home/aguelzow/gnumeric/bin/gnumeric:26607): CRITICAL **: gnm_expr_top_is_rangeref: assertion `IS_GNM_EXPR_TOP (texpr)' failed [Thread 0xb44ffb90 (LWP 26614) exited] Program received signal SIGSEGV, Segmentation fault. 0xb7a2137a in strcmp () from /lib/i686/cmov/libc.so.6 (gdb) bt
+ Trace 217312
The first critical happens within gnm_go_data_get_expr where dat is a non-NULL GOData from one of the items in a list returned by gog_graph_get_data. That seems to be a charting issue. The second critical is due to us not checking whetehr the return value of gnm_go_data_get_expr is non-null. (That's easy to fix but doesn't cause the crash.)
The crash is fixed. We should still support the graph style: XLSurfacePlot The first critical has been filed in bug 594068 against goffice.
fixed