~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/3rdparty/squirrel/squirrel/sqstate.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Matthijs Kooijman
  • Date: 2009-06-09 21:46:28 UTC
  • mfrom: (1.1.7 upstream) (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090609214628-6z5uodi6178z050l
[ Matthijs Kooijman ]
* New upstream release.
* Link against libicu to enable right-to-left language support. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
        SQCollectable *t = _gc_chain;
190
190
        SQCollectable *nx = NULL;
191
191
        while(t) {
 
192
                t->_uiRef++;
 
193
                t = t->_next;
 
194
        }
 
195
        t = _gc_chain;
 
196
        while(t) {
192
197
                t->UnMark();
193
 
                t->_uiRef++;
194
198
                t->Finalize();
195
199
                nx = t->_next;
196
200
                if(--t->_uiRef == 0)