Bugs item #1445272, was opened at 2006-03-08 01:22
Message generated for change (Settings changed) made by barnson
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1445272&group_id=105970
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: light
Group: v2.0
>Status: Closed
Resolution: Fixed
Priority: 9
Private: No
Submitted By: random (captainrandom)
Assigned to: Derek (derekc)
Summary: File attributes not propagated from merge modules
Initial Comment:
Very simple fix.
In Binder.cs:
// update the file attributes to match the compression
specified
// on the Merge element or on the Package element
int attributes = 0;
// get the current value if its not null
if (!record.IsNull(2))
{
attributes = record.GetInteger(2);
}
Should be:
// update the file attributes to match the compression
specified
// on the Merge element or on the Package element
int attributes = 0;
// get the current value if its not null
if (!recordUpdate.IsNull(2))
{
attributes = recordUpdate.GetInteger(2);
}
(the code is trying to get the attributes from the
record used as a query parameter, instead of the
current file record)
----------------------------------------------------------------------
Comment By: Derek (derekc)
Date: 2006-03-08 08:46
Message:
Logged In: YES
user_id=518766
Good catch! This should be fixed in the next drop.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1445272&group_id=105970
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-devs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wix-devs