Changeset 66828 in vbox
- Timestamp:
- May 8, 2017 4:54:39 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115275
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/port.h
r53201 r66828 267 267 268 268 #ifndef HAVE_ISINF 269 # undef isinf /* VBox: _MSC_VER >= RT_MSC_VER_VC120 has complicated macro implementation in math.h */ 269 270 int isinf(double x); 270 271 #endif 271 272 272 273 #ifndef HAVE_ISNAN 274 # undef isnan /* VBox: _MSC_VER >= RT_MSC_VER_VC120 has complicated macro implementation in math.h */ 273 275 int isnan(double x); 274 276 #endif -
trunk/src/VBox/Devices/Network/slirp/bsd/kern/uipc_mbuf.c
r63015 r66828 1232 1232 int count, space; 1233 1233 1234 if (len > ( MHLEN - dstoff))1234 if (len > (int)(MHLEN - dstoff)) 1235 1235 goto bad; 1236 1236 MGET(m, M_DONTWAIT, n->m_type); -
trunk/src/VBox/Devices/Network/slirp/ip_icmpwin.c
r63283 r66828 381 381 reqsize = reply->DataSize; 382 382 if ( (reply->Options.Flags & IP_FLAG_DF) != 0 383 && sizeof(struct ip) + sizeof(struct icmp_echo) + reqsize > if_mtu)383 && sizeof(struct ip) + sizeof(struct icmp_echo) + reqsize > (size_t)if_mtu) 384 384 return; 385 385 -
trunk/src/VBox/Devices/Network/slirp/tftp.c
r64585 r66828 729 729 * than buffer for name storage. 730 730 */ 731 AssertReturnVoid( cbFileName < cbPayload731 AssertReturnVoid( (ssize_t)cbFileName < cbPayload 732 732 && cbFileName < TFTP_FILENAME_MAX /* current limit in tftp session handle */ 733 733 && cbFileName); -
trunk/src/VBox/Devices/Network/testcase/tstIntNetR0.cpp
r62920 r66828 101 101 static uint32_t g_cbTransfer = _1M * 384; 102 102 /** Fake session handle. */ 103 const PSUPDRVSESSION g_pSession = (PSUPDRVSESSION) 0xdeadface;103 const PSUPDRVSESSION g_pSession = (PSUPDRVSESSION)(uintptr_t)0xdeadface; 104 104 105 105
Note:
See TracChangeset
for help on using the changeset viewer.