File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -560,7 +560,7 @@ Module["onRuntimeInitialized"] = function onRuntimeInitialized() {
560
560
this . pos += 1 ;
561
561
}
562
562
var blobptr = _malloc ( array . length ) ;
563
- writeArrayToMemory ( array , blobptr )
563
+ writeArrayToMemory ( array , blobptr ) ;
564
564
this . allocatedmem . push ( blobptr ) ;
565
565
this . db . handleError ( sqlite3_bind_blob (
566
566
this . stmt ,
@@ -1200,7 +1200,7 @@ Module["onRuntimeInitialized"] = function onRuntimeInitialized() {
1200
1200
sqlite3_result_null ( cx ) ;
1201
1201
} else if ( result . length != null ) {
1202
1202
var blobptr = _malloc ( result . length ) ;
1203
- writeArrayToMemory ( result , blobptr )
1203
+ writeArrayToMemory ( result , blobptr ) ;
1204
1204
sqlite3_result_blob ( cx , blobptr , result . length , - 1 ) ;
1205
1205
_free ( blobptr ) ;
1206
1206
} else {
You can’t perform that action at this time.
0 commit comments