blob: 3a6d20c277fec2307ac17683caeb4d34c9f59fcd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- Greek2Greek.cpp.orig Thu Feb 26 15:19:39 1998
+++ Greek2Greek.cpp Thu Feb 26 03:33:09 1998
@@ -118,6 +118,7 @@
sResult[characters++] = tmp; // Insert char
}
}
+ sResult[characters] = 0; // Terminate the string
return index;
}
@@ -209,6 +210,8 @@
fSigma = iota = breathing = rough = false;
}
+
+ sResult[index] = 0; // Terminate the string
return characters;
}
|