diff options
author | drh <> | 2023-10-06 12:51:05 +0000 |
---|---|---|
committer | drh <> | 2023-10-06 12:51:05 +0000 |
commit | 1935887a68e8b54369852fb62abeb8268b82886e (patch) | |
tree | d1484f05fea303031f621eab2a8e783554d6eb59 /src/test_intarray.c | |
parent | 03f7e425386f9451c6806e2e89f58fca1263aa44 (diff) | |
download | sqlite-1935887a68e8b54369852fb62abeb8268b82886e.tar.gz sqlite-1935887a68e8b54369852fb62abeb8268b82886e.zip |
Ensure that all fields of static sqlite3_module objects are explicitly
initialized, in order to hush-up nuisance compiler warnings.
FossilOrigin-Name: f3b3d712d6e58b1cb8fdebd2b6b3125080b6b3ac8c7c849a8cc1e5e778d62fe7
Diffstat (limited to 'src/test_intarray.c')
-rw-r--r-- | src/test_intarray.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test_intarray.c b/src/test_intarray.c index 8c74a0415..a978ed585 100644 --- a/src/test_intarray.c +++ b/src/test_intarray.c @@ -205,6 +205,11 @@ static sqlite3_module intarrayModule = { 0, /* xRollback */ 0, /* xFindMethod */ 0, /* xRename */ + 0, /* xSavepoint */ + 0, /* xRelease */ + 0, /* xRollbackTo */ + 0, /* xShadowName */ + 0 /* xIntegrity */ }; #endif /* !defined(SQLITE_OMIT_VIRTUALTABLE) */ |