Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dark cannot handle read-only input files #2

Closed
wixbot opened this issue Apr 6, 2004 · 1 comment
Closed

dark cannot handle read-only input files #2

wixbot opened this issue Apr 6, 2004 · 1 comment

Comments

@wixbot
Copy link

wixbot commented Apr 6, 2004

I tried dark on a read-only msm and directly happened
upon these two bugs:

cvs diff Decompiler.cs (in directory
C:\Andreas\res\wix\src\wix)

  1. Index: Decompiler.cs

RCS file: /cvsroot/wix/wix/src/wix/Decompiler.cs,v
retrieving revision 1.1
diff -r1.1 Decompiler.cs
235c235
< using (this.inputDatabase = new Database

  1. (inputPath, OpenDatabase.Transact))

> ```
> using (this.inputDatabase = new Database
> ```
>
> (inputPath, OpenDatabase.ReadOnly))
> 463c463
> ## < summary.Close(true);
>
> ```
> summary.Close(false);
> ```
1. I’m pretty sure that we don’t need transactions when
we’re reading.
2. I’m also pretty sure that we don’t need to save the
summary info either.

Originally opened by zune01 from http://sourceforge.net/p/wix/bugs/2/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants
@robmen @wixbot and others