aboutsummaryrefslogtreecommitdiff
path: root/std/debug/index.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-11-15 16:16:08 -0500
committerAndrew Kelley <superjoe30@gmail.com>2018-11-15 16:16:08 -0500
commitba361f31c610bb97958201391f929696afd7f5aa (patch)
treec51734973b75638a87c7feaad965cf3d0b4fa1ad /std/debug/index.zig
parent3090f83800f936118dfd4145a5e5754b8e899f23 (diff)
downloadzig-ba361f31c610bb97958201391f929696afd7f5aa.tar.gz
zig-ba361f31c610bb97958201391f929696afd7f5aa.zip
more fixes related to readStruct API
Diffstat (limited to 'std/debug/index.zig')
-rw-r--r--std/debug/index.zig11
1 files changed, 4 insertions, 7 deletions
diff --git a/std/debug/index.zig b/std/debug/index.zig
index c256932b24..b077bdb3b0 100644
--- a/std/debug/index.zig
+++ b/std/debug/index.zig
@@ -755,8 +755,7 @@ fn openSelfDebugInfoWindows(allocator: *mem.Allocator) !DebugInfo {
return cap * 2 / 3 + 1;
}
};
- var hash_tbl_hdr: HashTableHeader = undefined;
- try pdb_stream.stream.readStruct(HashTableHeader, &hash_tbl_hdr);
+ const hash_tbl_hdr = try pdb_stream.stream.readStruct(HashTableHeader);
if (hash_tbl_hdr.Capacity == 0)
return error.InvalidDebugInfo;
@@ -790,8 +789,7 @@ fn openSelfDebugInfoWindows(allocator: *mem.Allocator) !DebugInfo {
const dbi = di.pdb.dbi;
// Dbi Header
- var dbi_stream_header: pdb.DbiStreamHeader = undefined;
- try dbi.stream.readStruct(pdb.DbiStreamHeader, &dbi_stream_header);
+ const dbi_stream_header = try dbi.stream.readStruct(pdb.DbiStreamHeader);
const mod_info_size = dbi_stream_header.ModInfoSize;
const section_contrib_size = dbi_stream_header.SectionContributionSize;
@@ -800,8 +798,7 @@ fn openSelfDebugInfoWindows(allocator: *mem.Allocator) !DebugInfo {
// Module Info Substream
var mod_info_offset: usize = 0;
while (mod_info_offset != mod_info_size) {
- var mod_info: pdb.ModInfo = undefined;
- try dbi.stream.readStruct(pdb.ModInfo, &mod_info);
+ const mod_info = try dbi.stream.readStruct(pdb.ModInfo);
var this_record_len: usize = @sizeOf(pdb.ModInfo);
const module_name = try dbi.readNullTermString(allocator);
@@ -845,7 +842,7 @@ fn openSelfDebugInfoWindows(allocator: *mem.Allocator) !DebugInfo {
}
while (sect_cont_offset != section_contrib_size) {
const entry = try sect_contribs.addOne();
- try dbi.stream.readStruct(pdb.SectionContribEntry, entry);
+ entry.* = try dbi.stream.readStruct(pdb.SectionContribEntry);
sect_cont_offset += @sizeOf(pdb.SectionContribEntry);
if (sect_cont_offset > section_contrib_size)