"James Hawkins" jhawkins@codeweavers.com wrote:
if(detailed_info->lpRootManifestPath) ok(!lstrcmpiW(detailed_info->lpRootManifestPath, exinfo->root_manifest_path),
"unexpected detailed_info->lpRootManifestPath\n");
"unexpected detailed_info->lpRootManifestPath: %s %s\n",
strw(detailed_info->lpRootManifestPath), strw(exinfo->root_manifest_path));
As far as I can see strw() uses static buffer and is not able to handle more than one string at once.