diff options
author | David Tardon <dtardon@redhat.com> | 2011-05-31 11:54:54 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-05-31 11:55:58 +0200 |
commit | 1bf36db7af7064942f939ef3c35783e81a073899 (patch) | |
tree | 80113b3b1058a2175db51e73787166cd4aeec557 /basic | |
parent | aedc5eb4afb12ad074666507e6af8fcf24d64b65 (diff) |
make the loop finite .-)
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/runtime/runtime.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx index b73cc4f3e320..55b7aef0abba 100644 --- a/basic/source/runtime/runtime.cxx +++ b/basic/source/runtime/runtime.cxx @@ -1249,6 +1249,7 @@ SbiForStack* SbiRuntime::FindForStackItemForCollection( class BasicCollection* p pRet = p; break; } + p = p->pNext; } return pRet; |