Skip to content

Commit

Permalink
Correct classification of some sqlite pointer methods
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerbinns committed Jun 12, 2024
1 parent 34a916a commit a0e5725
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions tools/genfaultinject.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ def genfile(symbols):
PyFrame_New PyStructSequence_NewType PyStructSequence_New
PyMem_Realloc PyUnicode_FromFormat
PyObject_VectorcallMethod PyObject_Vectorcall PyWeakref_GetObject
sqlite3_malloc sqlite3_malloc64 sqlite3_mprintf
sqlite3_realloc sqlite3_realloc64
sqlite3_normalized_sql sqlite3_expanded_sql
""".split(),
# numeric return
"sqlite":
Expand All @@ -115,12 +119,12 @@ def genfile(symbols):
sqlite3_declare_vtab sqlite3_deserialize
sqlite3_drop_modules sqlite3_enable_load_extension
sqlite3_enable_shared_cache sqlite3_exec
sqlite3_expanded_sql sqlite3_initialize
sqlite3_load_extension sqlite3_malloc sqlite3_malloc64
sqlite3_mprintf sqlite3_normalized_sql sqlite3_open
sqlite3_initialize
sqlite3_load_extension
sqlite3_open
sqlite3_open_v2 sqlite3_overload_function
sqlite3_prepare_v3 sqlite3_realloc
sqlite3_realloc64 sqlite3_result_zeroblob64
sqlite3_prepare_v3
sqlite3_result_zeroblob64
sqlite3_set_authorizer sqlite3_shutdown sqlite3_status64
sqlite3_table_column_metadata sqlite3_threadsafe
sqlite3_trace_v2 sqlite3_vfs_register
Expand Down

0 comments on commit a0e5725

Please sign in to comment.