blob: 4c5d9334a5a303d9a900e45c6d76acbfbef122b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- RhapServer/RTSPRequestInterface.cpp.orig Sun Feb 27 09:47:18 2000
+++ RhapServer/RTSPRequestInterface.cpp Sun Feb 27 09:47:38 2000
@@ -501,7 +501,7 @@
GetUsersMovieFolderPath(0, &len);
if (len)
{
- char* home = malloc(1024);
+ char* home = (char *)malloc(1024);
if (FindUsersHome(user, home))
{
strcat(home, movieDirPath);
|