diff options
Diffstat (limited to 'src/WixToolset.Core.Burn/Bundles/BurnCommon.cs')
-rw-r--r-- | src/WixToolset.Core.Burn/Bundles/BurnCommon.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core.Burn/Bundles/BurnCommon.cs b/src/WixToolset.Core.Burn/Bundles/BurnCommon.cs index df328eb6..78b95bf4 100644 --- a/src/WixToolset.Core.Burn/Bundles/BurnCommon.cs +++ b/src/WixToolset.Core.Burn/Bundles/BurnCommon.cs | |||
@@ -128,7 +128,7 @@ namespace WixToolset.Core.Burn.Bundles | |||
128 | 128 | ||
129 | public void Dispose() | 129 | public void Dispose() |
130 | { | 130 | { |
131 | Dispose(true); | 131 | this.Dispose(true); |
132 | 132 | ||
133 | GC.SuppressFinalize(this); | 133 | GC.SuppressFinalize(this); |
134 | } | 134 | } |
@@ -238,7 +238,7 @@ namespace WixToolset.Core.Burn.Bundles | |||
238 | { | 238 | { |
239 | if (UInt32.MaxValue == this.wixburnDataOffset) | 239 | if (UInt32.MaxValue == this.wixburnDataOffset) |
240 | { | 240 | { |
241 | if (!EnsureNTHeader(reader)) | 241 | if (!this.EnsureNTHeader(reader)) |
242 | { | 242 | { |
243 | return false; | 243 | return false; |
244 | } | 244 | } |
@@ -286,7 +286,7 @@ namespace WixToolset.Core.Burn.Bundles | |||
286 | { | 286 | { |
287 | if (UInt32.MaxValue == this.firstSectionOffset) | 287 | if (UInt32.MaxValue == this.firstSectionOffset) |
288 | { | 288 | { |
289 | if (!EnsureDosHeader(reader)) | 289 | if (!this.EnsureDosHeader(reader)) |
290 | { | 290 | { |
291 | return false; | 291 | return false; |
292 | } | 292 | } |