Fix crash on bb10 with current realpath use

This commit is contained in:
Sylvain Berfini 2015-08-01 18:17:47 +02:00
parent f64f845c5d
commit a58201f10a

View file

@ -86,7 +86,7 @@ struct _LpConfig{
};
char* lp_realpath(const char* file, char* name) {
#ifdef _WIN32
#if defined(_WIN32) || defined(__QNX__)
return ms_strdup(file);
#else
char * output = realpath(file, name);