зеркало из https://github.com/mozilla/gecko-dev.git
Added a missing PR_htons call. Thanks to Bert Driehuis
<bert_driehuis@nl.compuware.com> for the bug report and fix.
This commit is contained in:
Родитель
1ae6b19ea0
Коммит
cb5076cfe2
|
@ -154,7 +154,7 @@ _server_thread(void *arg_id)
|
|||
|
||||
memset(&sa, 0 , sizeof(sa));
|
||||
sa.inet.family = PR_AF_INET;
|
||||
sa.inet.port = PORT_BASE + *id;
|
||||
sa.inet.port = PR_htons(PORT_BASE + *id);
|
||||
sa.inet.ip = PR_htonl(PR_INADDR_ANY);
|
||||
|
||||
if ( PR_Bind(sock, &sa) < 0) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче