diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-09 14:33:18 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-12 12:46:21 +1000 |
| commit | 8a42828f169796f01d9821790e4983639062d3b9 (patch) | |
| tree | 873eb99f64d68f65fd6f7d0fba00f99c93de57e9 /src/WixToolset.Core | |
| parent | 85a5fecdef50f18af8c8a87d270b6d55a02165d2 (diff) | |
| download | wix-8a42828f169796f01d9821790e4983639062d3b9.tar.gz wix-8a42828f169796f01d9821790e4983639062d3b9.tar.bz2 wix-8a42828f169796f01d9821790e4983639062d3b9.zip | |
Fix bug when parsing PayloadGroupRef.
Diffstat (limited to 'src/WixToolset.Core')
| -rw-r--r-- | src/WixToolset.Core/Compiler_Bundle.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Compiler_Bundle.cs b/src/WixToolset.Core/Compiler_Bundle.cs index 5d7072d0..ff746f8d 100644 --- a/src/WixToolset.Core/Compiler_Bundle.cs +++ b/src/WixToolset.Core/Compiler_Bundle.cs | |||
| @@ -1342,7 +1342,7 @@ namespace WixToolset.Core | |||
| 1342 | 1342 | ||
| 1343 | this.Core.ParseForExtensionElements(node); | 1343 | this.Core.ParseForExtensionElements(node); |
| 1344 | 1344 | ||
| 1345 | this.CreateGroupAndOrderingRows(sourceLineNumbers, parentType, parentId.Id, ComplexReferenceChildType.PayloadGroup, id.Id, previousType, previousId.Id); | 1345 | this.CreateGroupAndOrderingRows(sourceLineNumbers, parentType, parentId?.Id, ComplexReferenceChildType.PayloadGroup, id?.Id, previousType, previousId?.Id); |
| 1346 | 1346 | ||
| 1347 | return id; | 1347 | return id; |
| 1348 | } | 1348 | } |
