GNOME Bugzilla – Bug 672154
Crash when deleting cells
Last modified: 2012-03-15 21:55:43 UTC
- Open the following file: ftp://lgge.obs.ujf-grenoble.fr/pub/depot/parrenin/toto/Ice-synchros.gnumeric - go to cell U84 - CTRL-Down to go to cell U5008 - CTRL-SHIFT-Up to selects cells U8:U5008 - Suppr => CRASH
I assume "Suppr" means "delete". I don't get a crash. Given the size of that file it is possible that you run out of memory. Can you try running under gdb to get a stack trace? I note that there are a lot of #NAME values.
#NAME was due to time series plugin disabled. With that enabled, I do get a crash: Program received signal SIGSEGV, Segmentation fault. 0x00007fffe79da3da in staircase_averaging (absc=0x0, ord=0x0, nb_knots=0, targets=0x4c19da00, nb_targets=<value optimized out>) at functions.c:300 300 if (targets[i] < absc[j] || j > jmax) { (gdb) l 295 res = g_new (gnm_float, nb_targets); 296 j = 1; 297 while (j <= jmax && targets[0] >= absc[j]) 298 j++; 299 for (i = 1; i <= nb_targets; i++) { 300 if (targets[i] < absc[j] || j > jmax) { 301 res[i - 1] = ord[j - 1]; 302 continue; 303 } 304 res[i - 1] = (absc[j] - targets[i - 1]) * ord[j - 1]; (gdb) where
+ Trace 229888
This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report. This file is definitely at the limit of what we effectively support. Please keep multiple independent backups.
It looks like the push failed, so the fix hasn't actually landed yet. Will retry tomorrow.