Hello there, [subversion/libsvn_subr/path.c:1259]: (warning) Char literal compared with pointer 'last_dot'. Did you intend to dereference it?
if (last_dot && (last_dot + 1 != '\0'))
Maybe
if (last_dot && (last_dot[ 1] != '\0'))
Regards
David Binderman

