Fix a couple of memory issues
diff --git a/Modules/_sqlite/cursor.c b/Modules/_sqlite/cursor.c
index e68a275..7f378d6 100644
--- a/Modules/_sqlite/cursor.c
+++ b/Modules/_sqlite/cursor.c
@@ -443,14 +443,14 @@
if (second_argument == NULL) {
second_argument = PyTuple_New(0);
if (!second_argument) {
- return NULL;
+ goto error;
}
} else {
Py_INCREF(second_argument);
}
if (PyList_Append(parameters_list, second_argument) != 0) {
Py_DECREF(second_argument);
- return NULL;
+ goto error;
}
Py_DECREF(second_argument);
@@ -714,7 +714,7 @@
script_cstr = PyString_AsString(script_obj);
} else if (PyUnicode_Check(script_obj)) {
script_str = PyUnicode_AsUTF8String(script_obj);
- if (!script_obj) {
+ if (!script_str) {
return NULL;
}