Revision: 4210
          http://tigervnc.svn.sourceforge.net/tigervnc/?rev=4210&view=rev
Author:   atkac
Date:     2010-12-01 10:11:20 +0000 (Wed, 01 Dec 2010)

Log Message:
-----------
[Bugfix] Improve fix for #3112731.

Modified Paths:
--------------
    trunk/common/rfb/ScreenSet.h

Modified: trunk/common/rfb/ScreenSet.h
===================================================================
--- trunk/common/rfb/ScreenSet.h        2010-11-25 15:08:29 UTC (rev 4209)
+++ trunk/common/rfb/ScreenSet.h        2010-12-01 10:11:20 UTC (rev 4210)
@@ -76,7 +76,7 @@
     inline void remove_screen(rdr::U32 id) {
       std::list<Screen>::iterator iter, nextiter;
       for (iter = screens.begin();iter != screens.end();iter = nextiter) {
-        nextiter = ++iter;
+        nextiter = iter; nextiter++;
         if (iter->id == id)
             screens.erase(iter);
       }


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
Tap into the largest installed PC base & get more eyes on your game by
optimizing for Intel(R) Graphics Technology. Get started today with the
Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
http://p.sf.net/sfu/intelisp-dev2dev
_______________________________________________
Tigervnc-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tigervnc-commits

Reply via email to