On Wed, 2013-11-13 at 18:00 +0800, Qian Hong wrote:
While working on a vbscript bug affects a real world app, I found a potential miss usage of strchr/strrch in Wine. Here is a unfiltered list:
$ git grep "= strchr" | grep ext | grep -E "'.'"
...
dlls/msi/action.c: extension = strchrW( filename, '.' );
This should be strrchrW.