1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Add cases to fuzz.test. Some tests in this file fail at the moment. (CVS 3973)

FossilOrigin-Name: 1e8fcb3fbed7beb8bb1370953ecf3d4b9db01ede
This commit is contained in:
danielk1977
2007-05-10 17:32:48 +00:00
parent 53c1402157
commit f75232f748
6 changed files with 116 additions and 31 deletions

View File

@@ -498,9 +498,7 @@ static void columnMallocFailure(sqlite3_stmt *pStmt)
*/
const void *sqlite3_column_blob(sqlite3_stmt *pStmt, int i){
const void *val;
sqlite3MallocDisallow();
val = sqlite3_value_blob( columnMem(pStmt,i) );
sqlite3MallocAllow();
return val;
}
int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){