[Bug 21086] Bug in SearchPath when filename supplied but null

wine-bugs at winehq.org wine-bugs at winehq.org
Sun Dec 20 10:01:04 CST 2009


http://bugs.winehq.org/show_bug.cgi?id=21086





--- Comment #4 from Nikolay Sivov <bunglehead at gmail.com>  2009-12-20 10:01:04 ---
(In reply to comment #1)
> Created an attachment (id=25290)
 --> (http://bugs.winehq.org/attachment.cgi?id=25290) [details]
> Simple standalone testcase

Hi, Jason.

You're doing it wrong:
---
    rc = SearchPath("c:\\windows", &filename, 0, 256, &buffer, &ptr);
---
Should be:
---
    rc = SearchPath("c:\\windows", filename, 0, 256, buffer, &ptr);
---

Is it a typo?

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list