Drag & Drop issue corrected on Mac OS X.

git-svn-id: svn://svn.code.sf.net/p/hxcfloppyemu/code/HxCFloppyEmulator/HxCFloppyEmulator_software/trunk@804 63fa2f70-6a9b-4bc4-b855-9c6a949b1d69
This commit is contained in:
Jean-François DEL NERO
2013-05-12 16:13:33 +00:00
parent f1d55a9d2b
commit 34f34598be
+2 -1
View File
@@ -137,7 +137,8 @@ char * URIfilepathparser(char * URI,int size)
{
path = (char*)malloc( size + 1);
if(path)
{
{
memset(path,0,size + 1);
strncpy(path,URI,size);
}
}