1
0
forked from pool/virtualbox
virtualbox/handle_gsoap_208103.patch
Larry Finger 2c52cfe01d Accepting request 1037192 from home:lwfinger:branches:Virtualization
- VirtualBox 7.0.4 (released November 18 2022)
  VirtualBox 7.0.2 (released October 20 2022)
  VirtualBox 7.0.0 (released October 10 2022)

OBS-URL: https://build.opensuse.org/request/show/1037192
OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=664
2022-11-21 23:01:58 +00:00

17 lines
740 B
Diff

Index: VirtualBox-7.0.4/src/VBox/Main/webservice/vboxweb.cpp
===================================================================
--- VirtualBox-7.0.4.orig/src/VBox/Main/webservice/vboxweb.cpp
+++ VirtualBox-7.0.4/src/VBox/Main/webservice/vboxweb.cpp
@@ -955,9 +955,9 @@ static void doQueuesLoop()
continue; // timeout, not necessary to bother gsoap
// r < 0, errno
#if GSOAP_VERSION >= 208103
- if (soap_socket_errno == SOAP_EINTR)
+ if (soap_socket_errno == SOAP_EINTR)
#else
- if (soap_socket_errno(soap.master) == SOAP_EINTR)
+ if (soap_socket_errno(fd) == SOAP_EINTR)
#endif
rv = 0; // re-check if we should terminate
break;