From 4d86abedca111fb4857ee8cd07bf81dbb6a7c586 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 1 Jan 2009 15:29:25 +0100 Subject: tibtoa: Fixed while condition --- bin/tibtoa | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tibtoa b/bin/tibtoa index 2837880..cdf5bdb 100755 --- a/bin/tibtoa +++ b/bin/tibtoa @@ -629,7 +629,7 @@ substr($program, -$footer, $footer, ''); $length = length($program); $offset = 0; -while($offset <= $length) { +while($offset < $length) { $char = ord(substr($program, $offset++, 1)); if (exists($all{$char})) { $out = $all{$char}; -- cgit v1.2.3