aboutsummaryrefslogtreecommitdiff
path: root/ports/live555/fix-RTSPClient.patch
diff options
context:
space:
mode:
Diffstat (limited to 'ports/live555/fix-RTSPClient.patch')
-rw-r--r--ports/live555/fix-RTSPClient.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/ports/live555/fix-RTSPClient.patch b/ports/live555/fix-RTSPClient.patch
new file mode 100644
index 000000000..66863963d
--- /dev/null
+++ b/ports/live555/fix-RTSPClient.patch
@@ -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);
+ }
+ }
+