Skip to content

Commit 55d8f0c

Browse files
committed
[lipo] Initialized variable after #67737
1 parent 6ae36c0 commit 55d8f0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Object/MachOUniversalWriter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ buildFatArchList(ArrayRef<Slice> Slices) {
281281
.str()
282282
.c_str());
283283

284-
FatArchTy FatArch;
284+
FatArchTy FatArch = {};
285285
FatArch.cputype = S.getCPUType();
286286
FatArch.cpusubtype = S.getCPUSubType();
287287
FatArch.offset = Offset;

0 commit comments

Comments
 (0)