We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2ea860 commit 1badacbCopy full SHA for 1badacb
Modules/_sqlite/blob.c
@@ -124,7 +124,7 @@ read_single(pysqlite_Blob *self, Py_ssize_t offset)
124
{
125
assert(offset <= sqlite3_blob_bytes(self->blob));
126
127
- unsigned long buf;
+ unsigned long buf = 0;
128
int rc;
129
Py_BEGIN_ALLOW_THREADS
130
rc = sqlite3_blob_read(self->blob, (void *)&buf, 1, (int)offset);
0 commit comments