Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
f8052767
Kaydet (Commit)
f8052767
authored
Eki 08, 2008
tarafından
Gerhard Häring
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4046: Backport of issue #3312's patch: fixes two crashes in the sqlite3
module.
üst
bab0f2ff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
3 deletions
+16
-3
NEWS
Misc/NEWS
+3
-0
connection.c
Modules/_sqlite/connection.c
+9
-2
module.c
Modules/_sqlite/module.c
+4
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
f8052767
...
...
@@ -215,6 +215,9 @@ Extension Modules
-
Issue
#
1471
:
Arguments
to
fcntl
.
ioctl
are
no
longer
broken
on
64
-
bit
OpenBSD
and
similar
platforms
due
to
sign
extension
.
-
Issue
#
3312
:
Fix
two
crashes
in
sqlite3
.
Tests
-----
...
...
Modules/_sqlite/connection.c
Dosyayı görüntüle @
f8052767
...
...
@@ -822,6 +822,7 @@ static int connection_set_isolation_level(Connection* self, PyObject* isolation_
{
PyObject
*
res
;
PyObject
*
begin_statement
;
char
*
begin_statement_str
;
Py_XDECREF
(
self
->
isolation_level
);
...
...
@@ -854,12 +855,18 @@ static int connection_set_isolation_level(Connection* self, PyObject* isolation_
return
-
1
;
}
self
->
begin_statement
=
PyMem_Malloc
(
PyString_Size
(
begin_statement
)
+
2
);
begin_statement_str
=
PyString_AsString
(
begin_statement
);
if
(
!
begin_statement_str
)
{
Py_DECREF
(
begin_statement
);
return
-
1
;
}
self
->
begin_statement
=
PyMem_Malloc
(
strlen
(
begin_statement_str
)
+
2
);
if
(
!
self
->
begin_statement
)
{
Py_DECREF
(
begin_statement
);
return
-
1
;
}
strcpy
(
self
->
begin_statement
,
PyString_AsString
(
begin_statement
)
);
strcpy
(
self
->
begin_statement
,
begin_statement_str
);
Py_DECREF
(
begin_statement
);
}
...
...
Modules/_sqlite/module.c
Dosyayı görüntüle @
f8052767
...
...
@@ -128,12 +128,15 @@ static PyObject* module_register_adapter(PyObject* self, PyObject* args, PyObjec
{
PyTypeObject
*
type
;
PyObject
*
caster
;
int
rc
;
if
(
!
PyArg_ParseTuple
(
args
,
"OO"
,
&
type
,
&
caster
))
{
return
NULL
;
}
microprotocols_add
(
type
,
(
PyObject
*
)
&
SQLitePrepareProtocolType
,
caster
);
rc
=
microprotocols_add
(
type
,
(
PyObject
*
)
&
SQLitePrepareProtocolType
,
caster
);
if
(
rc
==
-
1
)
return
NULL
;
Py_INCREF
(
Py_None
);
return
Py_None
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment