summaryrefslogtreecommitdiff
path: root/multimedia/vls/patches/patch-ag
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/vls/patches/patch-ag')
-rw-r--r--multimedia/vls/patches/patch-ag30
1 files changed, 0 insertions, 30 deletions
diff --git a/multimedia/vls/patches/patch-ag b/multimedia/vls/patches/patch-ag
deleted file mode 100644
index 801db5ddccd..00000000000
--- a/multimedia/vls/patches/patch-ag
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-ag,v 1.1 2006/01/03 14:04:27 joerg Exp $
-
---- src/core/stream.cpp.orig 2006-01-03 13:54:46.000000000 +0000
-+++ src/core/stream.cpp
-@@ -319,7 +319,7 @@ template <class IOStream>
- {
- try
- {
-- u32 iByteCount = cSerializer.NextBytesCount();
-+ u32 iByteCount = this->cSerializer.NextBytesCount();
- while(iByteCount > 0)
- {
- const byte aBytes[iByteCount];
-@@ -332,13 +332,13 @@ template <class IOStream>
- ASSERT(iRc >= 0 || iRc == FILE_EOF);
- iOffset += iRc;
- }
-- while(iByteCount > 0 && iRc != FILE_EOF);
-+ while(iByteCount > 0 && this->iRc != FILE_EOF);
-
- // Deserialize them
-- cSerializer.SetNextBytes(&aBytes);
-+ this->cSerializer.SetNextBytes(&aBytes);
-
- // Next iteration
-- iByteCount = cSerializer.NextBytesCount();
-+ iByteCount = this->cSerializer.NextBytesCount();
- }
- }
- catch(E_Exception e)