Module: wine Branch: master Commit: cf75d40dadaf5fb717f5627d5f05ea2e0ea373fd URL: http://source.winehq.org/git/wine.git/?a=commit;h=cf75d40dadaf5fb717f5627d5f... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Fri Apr 2 10:38:12 2010 +0200 msi: Set the action taken in the RegisterExtensionInfo and RegisterClassInfo actions. --- dlls/msi/classes.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/msi/classes.c b/dlls/msi/classes.c index 53ed70f..7d4f1a0 100644 --- a/dlls/msi/classes.c +++ b/dlls/msi/classes.c @@ -827,6 +827,7 @@ UINT ACTION_RegisterClassInfo(MSIPACKAGE *package) debugstr_w(feature->Feature), debugstr_w(cls->clsid)); continue; } + feature->Action = feature->ActionRequest; file = get_loaded_file( package, comp->KeyPath ); if (!file) @@ -1220,6 +1221,7 @@ UINT ACTION_RegisterExtensionInfo(MSIPACKAGE *package) debugstr_w(feature->Feature), debugstr_w(ext->Extension)); continue; } + feature->Action = feature->ActionRequest; TRACE("Registering extension %s (%p)\n", debugstr_w(ext->Extension), ext);