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() {
560560 this . pos += 1 ;
561561 }
562562 var blobptr = _malloc ( array . length ) ;
563- writeArrayToMemory ( array , blobptr )
563+ writeArrayToMemory ( array , blobptr ) ;
564564 this . allocatedmem . push ( blobptr ) ;
565565 this . db . handleError ( sqlite3_bind_blob (
566566 this . stmt ,
@@ -1200,7 +1200,7 @@ Module["onRuntimeInitialized"] = function onRuntimeInitialized() {
12001200 sqlite3_result_null ( cx ) ;
12011201 } else if ( result . length != null ) {
12021202 var blobptr = _malloc ( result . length ) ;
1203- writeArrayToMemory ( result , blobptr )
1203+ writeArrayToMemory ( result , blobptr ) ;
12041204 sqlite3_result_blob ( cx , blobptr , result . length , - 1 ) ;
12051205 _free ( blobptr ) ;
12061206 } else {
You can’t perform that action at this time.
0 commit comments