[Bug 19666] FixitReader 2.3 and 3.0 will not install

wine-bugs at winehq.org wine-bugs at winehq.org
Thu Jun 24 04:28:20 CDT 2010


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


Ilya Basin <basinilya at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |basinilya at gmail.com




--- Comment #6 from Ilya Basin <basinilya at gmail.com>  2010-06-24 04:28:19 ---
About http://www.winehq.org/pipermail/wine-patches/2009-August/077397.html
IMHO, the following block had to be changed instead:
************************************
strcpyW(wcmd, wszApplicationName);
if (sei_tmp.lpParameters[0]) {
    strcatW(wcmd, wSpace);
    strcatW(wcmd, wszParameters);
}
************************************

It should be changed to something like:
************************************
wcmdLen +=2;
...
wcmd[0] = '"';
strcpyW(wcmd+1, wszApplicationName);
strcatW(wcmd, '"');
if (sei_tmp.lpParameters[0]) {
    strcatW(wcmd, wSpace);
    strcatW(wcmd, wszParameters);
}
************************************

-- 
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