View Issue Details

IDProjectCategoryView StatusLast Update
0000593Ecere SDKcompilerpublic2014-07-11 18:21
Reporterjerome Assigned To 
PriorityurgentSeveritymajorReproducibilityhave not tried
Status newResolutionopen 
Target Version0.46 eC II 
Summary0000593: Checking a not casted typed_object for null should generate a compiler error (The code will otherwise crash)
DescriptionEDASQLiteCommon.ec:


         case SQLITE_TEXT:
         {
            // TOFIX: Checking a not casted typed_object for null should generate a compiler error (crashes!)
            if((char *)data)
               sqlite3_bind_text(updateStatement, 1, (char *)data, strlen((char *)data), SQLITE_STATIC);
            else
               sqlite3_bind_text(updateStatement, 1, null, 0, SQLITE_STATIC);
            break;
         }
TagsNo tags attached.

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2011-06-05 18:38 jerome New Issue
2012-03-08 15:59 redj Target Version old 0.44.pre3 => 0.45 Ginkakuji
2012-03-29 07:50 redj Category => eC Compiling Tools
2012-03-29 07:50 redj Project @2@ => Ecere SDK
2014-04-30 10:37 jerome Summary Checking a not casted typed_object for null should generate a compiler error (crashes!) => Checking a not casted typed_object for null should generate a compiler error (The code will otherwise crash)
2014-04-30 10:37 jerome Severity crash => major
2014-07-11 18:21 jerome Target Version 0.45 Ginkakuji => 0.46 eC II