aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-11-03 18:11:27 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-11-03 18:11:27 -0700
commit34c25840a3aad15d44bb58c51abda9c2f6f347dc (patch)
tree0f1165a5fe6cc2127b7992f52b50a01c33a7048f
parent05afaff3558f0657c03a66cc87c7f54a1fec6864 (diff)
downloadvcpkg-34c25840a3aad15d44bb58c51abda9c2f6f347dc.tar.gz
vcpkg-34c25840a3aad15d44bb58c51abda9c2f6f347dc.zip
Fix line endings
-rw-r--r--ports/libaiff/buffer_uninitialized.patch84
1 files changed, 42 insertions, 42 deletions
diff --git a/ports/libaiff/buffer_uninitialized.patch b/ports/libaiff/buffer_uninitialized.patch
index 855d11a36..d87ab41c6 100644
--- a/ports/libaiff/buffer_uninitialized.patch
+++ b/ports/libaiff/buffer_uninitialized.patch
@@ -1,42 +1,42 @@
-diff --git "a/libaiff.c" "b/libaiff.c"
-index e266802..21179f9 100644
---- "a/libaiff.c"
-+++ "b/libaiff.c"
-@@ -168,6 +168,9 @@ AIFF_ReadOpenW(const wchar_t *file, int flags)
- r->buffer = NULL;
- r->buflen = 0;
-
-+ r->buffer2 = NULL;
-+ r->buflen2 = 0;
-+
- return r;
- }
-
-@@ -237,6 +240,9 @@ AIFF_ReadOpen(const char *file, int flags)
- r->buffer = NULL;
- r->buflen = 0;
-
-+ r->buffer2 = NULL;
-+ r->buflen2 = 0;
-+
- return r;
- }
-
-@@ -577,6 +583,8 @@ err2:
- w->segmentSize = 0;
- w->buffer = NULL;
- w->buflen = 0;
-+ w->buffer2 = NULL;
-+ w->buflen2 = 0;
- w->tics = 0;
-
- /*
-@@ -659,6 +667,8 @@ err2:
- w->segmentSize = 0;
- w->buffer = NULL;
- w->buflen = 0;
-+ w->buffer2 = NULL;
-+ w->buflen2 = 0;
- w->tics = 0;
-
- /*
+diff --git "a/libaiff.c" "b/libaiff.c"
+index e266802..21179f9 100644
+--- "a/libaiff.c"
++++ "b/libaiff.c"
+@@ -168,6 +168,9 @@ AIFF_ReadOpenW(const wchar_t *file, int flags)
+ r->buffer = NULL;
+ r->buflen = 0;
+
++ r->buffer2 = NULL;
++ r->buflen2 = 0;
++
+ return r;
+ }
+
+@@ -237,6 +240,9 @@ AIFF_ReadOpen(const char *file, int flags)
+ r->buffer = NULL;
+ r->buflen = 0;
+
++ r->buffer2 = NULL;
++ r->buflen2 = 0;
++
+ return r;
+ }
+
+@@ -577,6 +583,8 @@ err2:
+ w->segmentSize = 0;
+ w->buffer = NULL;
+ w->buflen = 0;
++ w->buffer2 = NULL;
++ w->buflen2 = 0;
+ w->tics = 0;
+
+ /*
+@@ -659,6 +667,8 @@ err2:
+ w->segmentSize = 0;
+ w->buffer = NULL;
+ w->buflen = 0;
++ w->buffer2 = NULL;
++ w->buflen2 = 0;
+ w->tics = 0;
+
+ /*