early-access version 2853
This commit is contained in:
13
externals/vcpkg/ports/live555/fix-RTSPClient.patch
vendored
Executable file
13
externals/vcpkg/ports/live555/fix-RTSPClient.patch
vendored
Executable file
@@ -0,0 +1,13 @@
|
||||
diff --git a/liveMedia/RTSPClient.cpp b/liveMedia/RTSPClient.cpp
|
||||
index 02c46c7..6127698 100644
|
||||
--- a/liveMedia/RTSPClient.cpp
|
||||
+++ b/liveMedia/RTSPClient.cpp
|
||||
@@ -1939,7 +1939,7 @@ int RTSPClient::write(const u_int8_t* data, unsigned count) {
|
||||
if (fTLS.isNeeded) {
|
||||
return fTLS.write(data, count);
|
||||
} else {
|
||||
- return send(fOutputSocketNum, data, count, 0);
|
||||
+ return send(fOutputSocketNum, (const char *)data, count, 0);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user