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
964ca427
Kaydet (Commit)
964ca427
authored
Ock 23, 2008
tarafından
Armin Rigo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
patch 1754489 by vlahan:
improve portability of address length calculation for AF_UNIX sockets
üst
501dbbfb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
socketmodule.c
Modules/socketmodule.c
+2
-2
No files found.
Modules/socketmodule.c
Dosyayı görüntüle @
964ca427
...
@@ -1001,7 +1001,7 @@ makesockaddr(int sockfd, struct sockaddr *addr, int addrlen, int proto)
...
@@ -1001,7 +1001,7 @@ makesockaddr(int sockfd, struct sockaddr *addr, int addrlen, int proto)
struct
sockaddr_un
*
a
=
(
struct
sockaddr_un
*
)
addr
;
struct
sockaddr_un
*
a
=
(
struct
sockaddr_un
*
)
addr
;
#ifdef linux
#ifdef linux
if
(
a
->
sun_path
[
0
]
==
0
)
{
/* Linux abstract namespace */
if
(
a
->
sun_path
[
0
]
==
0
)
{
/* Linux abstract namespace */
addrlen
-=
(
sizeof
(
*
a
)
-
sizeof
(
a
->
sun_path
)
);
addrlen
-=
offsetof
(
struct
sockaddr_un
,
sun_path
);
return
PyString_FromStringAndSize
(
a
->
sun_path
,
return
PyString_FromStringAndSize
(
a
->
sun_path
,
addrlen
);
addrlen
);
}
}
...
@@ -1207,7 +1207,7 @@ getsockaddrarg(PySocketSockObject *s, PyObject *args,
...
@@ -1207,7 +1207,7 @@ getsockaddrarg(PySocketSockObject *s, PyObject *args,
#if defined(PYOS_OS2)
#if defined(PYOS_OS2)
*
len_ret
=
sizeof
(
*
addr
);
*
len_ret
=
sizeof
(
*
addr
);
#else
#else
*
len_ret
=
len
+
sizeof
(
*
addr
)
-
sizeof
(
addr
->
sun_path
);
*
len_ret
=
len
+
offsetof
(
struct
sockaddr_un
,
sun_path
);
#endif
#endif
return
1
;
return
1
;
}
}
...
...
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