summaryrefslogtreecommitdiff
path: root/games/asc/files/patch-source::basestrm.cpp
diff options
context:
space:
mode:
authorDaichi GOTO <daichi@FreeBSD.org>2003-07-14 05:27:25 +0000
committerDaichi GOTO <daichi@FreeBSD.org>2003-07-14 05:27:25 +0000
commitabfe4d84c7024a0bde95af52b1bbf9c429cdcfa6 (patch)
tree6f7a23b67e54bafca5bd8b74219a007a468908a2 /games/asc/files/patch-source::basestrm.cpp
parentupdate security/drweb-postfix: 4.29.10a -> 4.29.12d (diff)
update games/asc: 1.13.5.1 -> 1.13.7
PR: 54359 Submitted by: Ying-Chieh Chen <yinjieh@csie.nctu.edu.tw> (maintainer)
Diffstat (limited to 'games/asc/files/patch-source::basestrm.cpp')
-rw-r--r--games/asc/files/patch-source::basestrm.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/games/asc/files/patch-source::basestrm.cpp b/games/asc/files/patch-source::basestrm.cpp
deleted file mode 100644
index 3ee6e84963a6..000000000000
--- a/games/asc/files/patch-source::basestrm.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-
-$FreeBSD$
-
---- source/basestrm.cpp.orig Tue Oct 1 16:11:44 2002
-+++ source/basestrm.cpp Fri Oct 18 15:04:21 2002
-@@ -1008,7 +1011,7 @@
- while (actpos2 < size) {
- if (datasize == 0)
- if ( excpt ) {
-- throw treadafterend ( getDeviceName() );
-+ goto except1;
- }
- else
- return actpos2;
-@@ -1028,6 +1031,9 @@
- }
-
- return actpos2;
-+
-+except1:
-+ throw treadafterend ( getDeviceName() );
- }
-
-
-@@ -1058,10 +1064,14 @@
- }
- else
- if (actmempos > memsize)
-- throw tinternalerror ( __FILE__, __LINE__ );
-+ goto except1;
-
- actpos2 += s;
- }
-+ return;
-+
-+except1:
-+ throw tinternalerror ( __FILE__, __LINE__ );
- }
-
-