Fix remaining text file line endings in the tree. (#18)

Based on https://stackoverflow.com/a/1511273

Also enforce CRLF for all *.xml files in our tree, because they are distributed with ReactOS.
This commit is contained in:
Colin Finck 2017-10-06 15:00:36 +02:00 committed by GitHub
parent 3cd76b91b5
commit 950c86fb4c
305 changed files with 466133 additions and 466140 deletions

View file

@ -1,8 +1,8 @@
Index: msxml3.spec
===================================================================
--- msxml3.spec (revision 49877)
+++ msxml3.spec (working copy)
@@ -1,10 +1,10 @@
Index: msxml3.spec
===================================================================
--- msxml3.spec (revision 49877)
+++ msxml3.spec (working copy)
@@ -1,10 +1,10 @@
- 6 stub @
- 7 stub @
- 8 stub @
@ -20,22 +20,22 @@ Index: msxml3.spec
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
Index: nodelist.c
===================================================================
--- nodelist.c (revision 57316)
+++ nodelist.c (working copy)
@@ -89,7 +89,11 @@
if (!ppvObject)
{
- return E_POINTER;
+ /* NOTE: Interface documentation for IUnknown explicitly states
+ * this case should return E_POINTER. Empirical data proves
+ * MS violates this contract and instead return E_INVALIDARG.
+ */
+ return E_INVALIDARG;
}
if ( IsEqualGUID( riid, &IID_IUnknown ) ||
Index: nodelist.c
===================================================================
--- nodelist.c (revision 57316)
+++ nodelist.c (working copy)
@@ -89,7 +89,11 @@
if (!ppvObject)
{
- return E_POINTER;
+ /* NOTE: Interface documentation for IUnknown explicitly states
+ * this case should return E_POINTER. Empirical data proves
+ * MS violates this contract and instead return E_INVALIDARG.
+ */
+ return E_INVALIDARG;
}
if ( IsEqualGUID( riid, &IID_IUnknown ) ||