Skip to content

Commit dbfed77

Browse files
authored
[WindowsManifestMerger] Remove deprecated call to xmlKeepBlanksDefault (llvm#93139)
This function has been deprecated in favor of the XML_PARSE_NOBLANKS option. The code already uses the option, so remove the call. If this call served some additional purpose, then it wasn't tested. Fixes llvm#86029.
1 parent 15c8ba4 commit dbfed77

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

llvm/lib/WindowsManifest/WindowsManifestMerger.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,6 @@ WindowsManifestMerger::WindowsManifestMergerImpl::getMergedManifest() {
669669
xmlDocSetRootElement(OutputDoc.get(), CombinedRoot);
670670
assert(nullptr == xmlDocGetRootElement(CombinedDoc));
671671

672-
xmlKeepBlanksDefault(0);
673672
xmlChar *Buff = nullptr;
674673
xmlDocDumpFormatMemoryEnc(OutputDoc.get(), &Buff, &BufferSize, "UTF-8", 1);
675674
Buffer.reset(Buff);

0 commit comments

Comments
 (0)