Commit cbdc7955 authored by Alexandre Julliard's avatar Alexandre Julliard

libwine: Avoid memrchr.

parent 624ad399
...@@ -165,7 +165,8 @@ static char *get_runtime_bindir( const char *argv0 ) ...@@ -165,7 +165,8 @@ static char *get_runtime_bindir( const char *argv0 )
if ((ret = readlink( EXE_LINK, bindir, size )) == -1) break; if ((ret = readlink( EXE_LINK, bindir, size )) == -1) break;
if (ret != size) if (ret != size)
{ {
if (!(p = memrchr( bindir, '/', ret ))) break; bindir[ret] = 0;
if (!(p = strrchr( bindir, '/' ))) break;
if (p == bindir) p++; if (p == bindir) p++;
*p = 0; *p = 0;
return bindir; return bindir;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment