Closed GoogleCodeExporter closed 9 years ago
What CrashRpt version do you use? Can you point a source file/line where the
parameters are swapped?
Original comment by zexspect...@gmail.com
on 3 Jun 2011 at 1:53
Version 1206
The function crAddRegKeyA() is:
CRASHRPTAPI(int)
crAddRegKeyA(
LPCSTR pszRegKeyList,
LPCSTR pszDstFileName,
DWORD dwFlags
)
{
// This is just a wrapper for wide-char function version
strconv_t strconv;
return crAddRegKeyW(strconv.a2w(pszDstFileName), strconv.a2w(pszRegKeyList), dwFlags);
}
But is should be:
CRASHRPTAPI(int)
crAddRegKeyA(
LPCSTR pszRegKeyList,
LPCSTR pszDstFileName,
DWORD dwFlags
)
{
// This is just a wrapper for wide-char function version
strconv_t strconv;
return crAddRegKeyW(strconv.a2w(pszRegKeyList), strconv.a2w(pszDstFileName), dwFlags);
}
Original comment by jimthe...@googlemail.com
on 3 Jun 2011 at 2:00
Please upgrade to v1.2.10. This problem seems to be fixed there.
Original comment by zexspect...@gmail.com
on 7 Jun 2011 at 1:48
Closing this.
Original comment by zexspect...@gmail.com
on 18 Aug 2011 at 2:11
Original issue reported on code.google.com by
jimthe...@googlemail.com
on 1 Jun 2011 at 8:36