From ed8752817b2f935fc51a00e167e2f21e583194b8 Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Sun, 25 Nov 2007 08:46:19 +0000 Subject: Warning cleanup (bzr r4133) --- src/dom/uri.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/dom/uri.cpp') diff --git a/src/dom/uri.cpp b/src/dom/uri.cpp index e68caf898..13b76c413 100644 --- a/src/dom/uri.cpp +++ b/src/dom/uri.cpp @@ -329,6 +329,9 @@ static int find(const std::vector &str, int ch, int startpos) static int findLast(const std::vector &str, int ch) { + // TODO FIXME BUGBUG + // This loop appears to be infinite, so it is probably not being called. + // Test for a problem, then fix after it has been observed locking up. for (unsigned int i = str.size()-1 ; i>=0 ; i--) { if (ch == str[i]) -- cgit v1.2.3