2022-11-22 00:01:58 +01:00
|
|
|
Index: VirtualBox-7.0.4/src/VBox/Main/webservice/vboxweb.cpp
|
2020-05-29 20:57:25 +02:00
|
|
|
===================================================================
|
2022-11-22 00:01:58 +01:00
|
|
|
--- VirtualBox-7.0.4.orig/src/VBox/Main/webservice/vboxweb.cpp
|
|
|
|
+++ VirtualBox-7.0.4/src/VBox/Main/webservice/vboxweb.cpp
|
2022-11-18 22:49:33 +01:00
|
|
|
@@ -955,9 +955,9 @@ static void doQueuesLoop()
|
2020-05-29 20:57:25 +02:00
|
|
|
continue; // timeout, not necessary to bother gsoap
|
|
|
|
// r < 0, errno
|
2020-12-09 21:22:12 +01:00
|
|
|
#if GSOAP_VERSION >= 208103
|
|
|
|
- if (soap_socket_errno == SOAP_EINTR)
|
2020-05-29 20:57:25 +02:00
|
|
|
+ if (soap_socket_errno == SOAP_EINTR)
|
2020-12-09 21:22:12 +01:00
|
|
|
#else
|
|
|
|
- if (soap_socket_errno(soap.master) == SOAP_EINTR)
|
2020-05-29 20:57:25 +02:00
|
|
|
+ if (soap_socket_errno(fd) == SOAP_EINTR)
|
2020-12-09 21:22:12 +01:00
|
|
|
#endif
|
2020-05-29 20:57:25 +02:00
|
|
|
rv = 0; // re-check if we should terminate
|
|
|
|
break;
|