- Timestamp:
- Jan 10, 2025 4:41:32 PM (10 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VDIfTcpNet.cpp
r106061 r107689 541 541 static DECLCALLBACK(int) vdIfTcpNetPoke(VDSOCKET hVdSock) 542 542 { 543 int rc = VINF_SUCCESS;544 543 size_t cbWritten = 0; 545 544 PVDSOCKETINT pSockInt = (PVDSOCKETINT)hVdSock; … … 549 548 if (ASMAtomicReadBool(&pSockInt->fWaiting)) 550 549 { 551 rc = RTPipeWrite(pSockInt->hPipeW, "", 1, &cbWritten);550 int rc = RTPipeWrite(pSockInt->hPipeW, "", 1, &cbWritten); 552 551 Assert(RT_SUCCESS(rc) || cbWritten == 0); 553 552 }
Note:
See TracChangeset
for help on using the changeset viewer.