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
cfb60ee1
Kaydet (Commit)
cfb60ee1
authored
Eki 01, 1996
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed very nasty null-dereferencing bug in DisposeControl/destroy
object.
üst
cc778ebd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
35 deletions
+42
-35
Ctlmodule.c
Mac/Modules/ctl/Ctlmodule.c
+22
-33
ctledit.py
Mac/Modules/ctl/ctledit.py
+18
-0
ctlscan.py
Mac/Modules/ctl/ctlscan.py
+1
-1
ctlsupport.py
Mac/Modules/ctl/ctlsupport.py
+1
-1
No files found.
Mac/Modules/ctl/Ctlmodule.c
Dosyayı görüntüle @
cfb60ee1
...
@@ -92,23 +92,10 @@ CtlObj_Convert(v, p_itself)
...
@@ -92,23 +92,10 @@ CtlObj_Convert(v, p_itself)
static
void
CtlObj_dealloc
(
self
)
static
void
CtlObj_dealloc
(
self
)
ControlObject
*
self
;
ControlObject
*
self
;
{
{
SetCRefCon
(
self
->
ob_itself
,
(
long
)
0
);
/* Make it forget about us */
if
(
self
->
ob_itself
)
SetCRefCon
(
self
->
ob_itself
,
(
long
)
0
);
/* Make it forget about us */
PyMem_DEL
(
self
);
PyMem_DEL
(
self
);
}
}
static
PyObject
*
CtlObj_DisposeControl
(
_self
,
_args
)
ControlObject
*
_self
;
PyObject
*
_args
;
{
PyObject
*
_res
=
NULL
;
if
(
!
PyArg_ParseTuple
(
_args
,
""
))
return
NULL
;
DisposeControl
(
_self
->
ob_itself
);
Py_INCREF
(
Py_None
);
_res
=
Py_None
;
return
_res
;
}
static
PyObject
*
CtlObj_ShowControl
(
_self
,
_args
)
static
PyObject
*
CtlObj_ShowControl
(
_self
,
_args
)
ControlObject
*
_self
;
ControlObject
*
_self
;
PyObject
*
_args
;
PyObject
*
_args
;
...
@@ -452,9 +439,26 @@ static PyObject *CtlObj_as_Resource(_self, _args)
...
@@ -452,9 +439,26 @@ static PyObject *CtlObj_as_Resource(_self, _args)
}
}
static
PyObject
*
CtlObj_DisposeControl
(
_self
,
_args
)
ControlObject
*
_self
;
PyObject
*
_args
;
{
PyObject
*
_res
=
NULL
;
if
(
!
PyArg_ParseTuple
(
_args
,
""
))
return
NULL
;
if
(
_self
->
ob_itself
)
{
SetCRefCon
(
_self
->
ob_itself
,
(
long
)
0
);
/* Make it forget about us */
DisposeControl
(
_self
->
ob_itself
);
_self
->
ob_itself
=
NULL
;
}
Py_INCREF
(
Py_None
);
_res
=
Py_None
;
return
_res
;
}
static
PyMethodDef
CtlObj_methods
[]
=
{
static
PyMethodDef
CtlObj_methods
[]
=
{
{
"DisposeControl"
,
(
PyCFunction
)
CtlObj_DisposeControl
,
1
,
"() -> None"
},
{
"ShowControl"
,
(
PyCFunction
)
CtlObj_ShowControl
,
1
,
{
"ShowControl"
,
(
PyCFunction
)
CtlObj_ShowControl
,
1
,
"() -> None"
},
"() -> None"
},
{
"HideControl"
,
(
PyCFunction
)
CtlObj_HideControl
,
1
,
{
"HideControl"
,
(
PyCFunction
)
CtlObj_HideControl
,
1
,
...
@@ -499,6 +503,8 @@ static PyMethodDef CtlObj_methods[] = {
...
@@ -499,6 +503,8 @@ static PyMethodDef CtlObj_methods[] = {
"() -> (SInt32 _rv)"
},
"() -> (SInt32 _rv)"
},
{
"as_Resource"
,
(
PyCFunction
)
CtlObj_as_Resource
,
1
,
{
"as_Resource"
,
(
PyCFunction
)
CtlObj_as_Resource
,
1
,
"Return this Control as a Resource"
},
"Return this Control as a Resource"
},
{
"DisposeControl"
,
(
PyCFunction
)
CtlObj_DisposeControl
,
1
,
"() -> None"
},
{
NULL
,
NULL
,
0
}
{
NULL
,
NULL
,
0
}
};
};
...
@@ -588,21 +594,6 @@ static PyObject *Ctl_GetNewControl(_self, _args)
...
@@ -588,21 +594,6 @@ static PyObject *Ctl_GetNewControl(_self, _args)
return
_res
;
return
_res
;
}
}
static
PyObject
*
Ctl_KillControls
(
_self
,
_args
)
PyObject
*
_self
;
PyObject
*
_args
;
{
PyObject
*
_res
=
NULL
;
WindowPtr
theWindow
;
if
(
!
PyArg_ParseTuple
(
_args
,
"O&"
,
WinObj_Convert
,
&
theWindow
))
return
NULL
;
KillControls
(
theWindow
);
Py_INCREF
(
Py_None
);
_res
=
Py_None
;
return
_res
;
}
static
PyObject
*
Ctl_DrawControls
(
_self
,
_args
)
static
PyObject
*
Ctl_DrawControls
(
_self
,
_args
)
PyObject
*
_self
;
PyObject
*
_self
;
PyObject
*
_args
;
PyObject
*
_args
;
...
@@ -663,8 +654,6 @@ static PyMethodDef Ctl_methods[] = {
...
@@ -663,8 +654,6 @@ static PyMethodDef Ctl_methods[] = {
"(WindowPtr theWindow, Rect boundsRect, Str255 title, Boolean visible, SInt16 value, SInt16 min, SInt16 max, SInt16 procID, SInt32 refCon) -> (ControlHandle _rv)"
},
"(WindowPtr theWindow, Rect boundsRect, Str255 title, Boolean visible, SInt16 value, SInt16 min, SInt16 max, SInt16 procID, SInt32 refCon) -> (ControlHandle _rv)"
},
{
"GetNewControl"
,
(
PyCFunction
)
Ctl_GetNewControl
,
1
,
{
"GetNewControl"
,
(
PyCFunction
)
Ctl_GetNewControl
,
1
,
"(SInt16 controlID, WindowPtr owner) -> (ControlHandle _rv)"
},
"(SInt16 controlID, WindowPtr owner) -> (ControlHandle _rv)"
},
{
"KillControls"
,
(
PyCFunction
)
Ctl_KillControls
,
1
,
"(WindowPtr theWindow) -> None"
},
{
"DrawControls"
,
(
PyCFunction
)
Ctl_DrawControls
,
1
,
{
"DrawControls"
,
(
PyCFunction
)
Ctl_DrawControls
,
1
,
"(WindowPtr theWindow) -> None"
},
"(WindowPtr theWindow) -> None"
},
{
"UpdateControls"
,
(
PyCFunction
)
Ctl_UpdateControls
,
1
,
{
"UpdateControls"
,
(
PyCFunction
)
Ctl_UpdateControls
,
1
,
...
...
Mac/Modules/ctl/ctledit.py
Dosyayı görüntüle @
cfb60ee1
...
@@ -6,3 +6,21 @@ f = ManualGenerator("as_Resource", as_resource_body)
...
@@ -6,3 +6,21 @@ f = ManualGenerator("as_Resource", as_resource_body)
f
.
docstring
=
lambda
:
"Return this Control as a Resource"
f
.
docstring
=
lambda
:
"Return this Control as a Resource"
methods
.
append
(
f
)
methods
.
append
(
f
)
DisposeControl_body
=
"""
if (!PyArg_ParseTuple(_args, ""))
return NULL;
if ( _self->ob_itself ) {
SetCRefCon(_self->ob_itself, (long)0); /* Make it forget about us */
DisposeControl(_self->ob_itself);
_self->ob_itself = NULL;
}
Py_INCREF(Py_None);
_res = Py_None;
return _res;
"""
f
=
ManualGenerator
(
"DisposeControl"
,
DisposeControl_body
)
f
.
docstring
=
lambda
:
"() -> None"
methods
.
append
(
f
)
Mac/Modules/ctl/ctlscan.py
Dosyayı görüntüle @
cfb60ee1
...
@@ -30,7 +30,7 @@ class MyScanner(Scanner):
...
@@ -30,7 +30,7 @@ class MyScanner(Scanner):
def
makeblacklistnames
(
self
):
def
makeblacklistnames
(
self
):
return
[
return
[
'DisposeControl'
# Implied by deletion of control object
'DisposeControl'
,
# Generated manually
'KillControls'
,
# Implied by close of dialog
'KillControls'
,
# Implied by close of dialog
'SetCtlAction'
,
'SetCtlAction'
,
]
]
...
...
Mac/Modules/ctl/ctlsupport.py
Dosyayı görüntüle @
cfb60ee1
...
@@ -69,7 +69,7 @@ class MyObjectDefinition(GlobalObjectDefinition):
...
@@ -69,7 +69,7 @@ class MyObjectDefinition(GlobalObjectDefinition):
GlobalObjectDefinition
.
outputInitStructMembers
(
self
)
GlobalObjectDefinition
.
outputInitStructMembers
(
self
)
Output
(
"SetCRefCon(itself, (long)it);"
)
Output
(
"SetCRefCon(itself, (long)it);"
)
def
outputCleanupStructMembers
(
self
):
def
outputCleanupStructMembers
(
self
):
Output
(
"SetCRefCon(self->ob_itself, (long)0); /* Make it forget about us */"
)
Output
(
"
if (self->ob_itself)
SetCRefCon(self->ob_itself, (long)0); /* Make it forget about us */"
)
# Create the generator groups and link them
# Create the generator groups and link them
module
=
MacModule
(
MODNAME
,
MODPREFIX
,
includestuff
,
finalstuff
,
initstuff
)
module
=
MacModule
(
MODNAME
,
MODPREFIX
,
includestuff
,
finalstuff
,
initstuff
)
...
...
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