K 10 svn:author V 2 pi K 8 svn:date V 27 2016-06-04T06:31:16.381027Z K 7 svn:log V 494 databases/cego: 2.30.5 -> 2.30.6 The following query can cause a core dump create table t1(a string(100)); insert into t1 values ( 'Hugo Habicht'); insert into t1 values ( 'Kim Kaiser'); select substr(a, 1, getpos(a, ' ')) from t1; For return value length evaluation, the method CegoFieldValue::asInteger is called on a null value which causes the dump. A fix has been added, so the method returns a value of 0 in case of null values. Submitted by: Bjoern Lemke END