Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Dependencies>
<ProductDependencies>
<Dependency Name="Microsoft.SymbolStore" Version="1.0.405901">
<Dependency Name="Microsoft.SymbolStore" Version="1.0.406001">
<Uri>https://github.com/dotnet/symstore</Uri>
<Sha>65e1cd47410a80290b379c3d86c87415d5d07689</Sha>
<Sha>4fa642ff7760b7cb9e1ec7d1c625ecde11d8ddc4</Sha>
</Dependency>
<Dependency Name="Microsoft.Diagnostics.Runtime" Version="2.3.405501">
<Uri>https://github.com/microsoft/clrmd</Uri>
Expand Down
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</PropertyGroup>
<PropertyGroup>
<!-- Latest symstore version updated by darc -->
<MicrosoftSymbolStoreVersion>1.0.405901</MicrosoftSymbolStoreVersion>
<MicrosoftSymbolStoreVersion>1.0.406001</MicrosoftSymbolStoreVersion>
<!-- Latest shared runtime version updated by darc -->
<VSRedistCommonNetCoreSharedFrameworkx6470Version>7.0.0-rtm.22513.12</VSRedistCommonNetCoreSharedFrameworkx6470Version>
<MicrosoftNETCoreAppRuntimewinx64Version>7.0.0</MicrosoftNETCoreAppRuntimewinx64Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ namespace Microsoft.Diagnostics.DebugServices.Implementation
/// <summary>
/// Disposable ELFFile wrapper around the module file.
/// </summary>
public class ELFModule : ELFFile, IDisposable
public class ELFModule : ELFFile
{
private readonly Stream _stream;

/// <summary>
/// Opens and returns an ELFFile instance from the local file path
/// </summary>
Expand Down Expand Up @@ -48,9 +46,6 @@ public static ELFModule OpenFile(string filePath)
public ELFModule(Stream stream) :
base(new StreamAddressSpace(stream), position: 0, isDataSourceVirtualAddressSpace: false)
{
_stream = stream;
}

public void Dispose() => _stream.Dispose();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ namespace Microsoft.Diagnostics.DebugServices.Implementation
/// <summary>
/// Disposable MachOFile wrapper around the module file.
/// </summary>
public class MachOModule : MachOFile, IDisposable
public class MachOModule : MachOFile
{
private readonly Stream _stream;

/// <summary>
/// Opens and returns an MachOFile instance from the local file path
/// </summary>
Expand Down Expand Up @@ -48,9 +46,6 @@ public static MachOModule OpenFile(string filePath)
public MachOModule(Stream stream) :
base(new StreamAddressSpace(stream), position: 0, dataSourceIsVirtualAddressSpace: false)
{
_stream = stream;
}

public void Dispose() => _stream.Dispose();
}
}