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
b6aa856f
Kaydet (Commit)
b6aa856f
authored
Eyl 27, 2004
tarafından
Armin Rigo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1009075, bug #952953: allow execve with empty 2nd argument
üst
9f904398
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
14 deletions
+2
-14
libos.tex
Doc/lib/libos.tex
+2
-2
posixmodule.c
Modules/posixmodule.c
+0
-12
No files found.
Doc/lib/libos.tex
Dosyayı görüntüle @
b6aa856f
...
...
@@ -1226,8 +1226,8 @@ the individual parameters simply become additional parameters to the
\function
{
execl*()
}
functions. The
\character
{
v
}
variants are good
when the number of parameters is variable, with the arguments being
passed in a list or tuple as the
\var
{
args
}
parameter. In either
case, the arguments to the child process
must
start with the name of
the command being run.
case, the arguments to the child process
should
start with the name of
the command being run
, but this is not enforced
.
The variants which include a
\character
{
p
}
near the end
(
\function
{
execlp()
}
,
\function
{
execlpe()
}
,
\function
{
execvp()
}
,
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
b6aa856f
...
...
@@ -2171,12 +2171,6 @@ posix_execv(PyObject *self, PyObject *args)
return
NULL
;
}
if
(
argc
==
0
)
{
PyErr_SetString
(
PyExc_ValueError
,
"execv() arg 2 must not be empty"
);
PyMem_Free
(
path
);
return
NULL
;
}
argvlist
=
PyMem_NEW
(
char
*
,
argc
+
1
);
if
(
argvlist
==
NULL
)
{
PyMem_Free
(
path
);
...
...
@@ -2253,12 +2247,6 @@ posix_execve(PyObject *self, PyObject *args)
goto
fail_0
;
}
if
(
argc
==
0
)
{
PyErr_SetString
(
PyExc_ValueError
,
"execve() arg 2 must not be empty"
);
goto
fail_0
;
}
argvlist
=
PyMem_NEW
(
char
*
,
argc
+
1
);
if
(
argvlist
==
NULL
)
{
PyErr_NoMemory
();
...
...
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