[Digikam-devel] [Bug 107742] thumbnails in main view are not	created/displayed
    Renchi Raju 
    renchi at pooh.tam.uiuc.edu
       
    Wed Jul 27 10:58:33 BST 2005
    
    
  
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=107742         
renchi pooh tam uiuc edu changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED
------- Additional Comments From renchi pooh tam uiuc edu  2005-07-27 11:58 -------
SVN commit 439168 by pahlibar:
there was an infinite loop in the exif orientation scanning 
code which prevented the thumbnail from being generated for
some images. the design of the load-on-demand thumbnail-generator
prevents the next thumbnails from being loaded before the 
current one is finished.
BUGS: 107742
 M  +1 -1      exiforientation_p.h  
--- trunk/extragear/graphics/digikam/kioslave/exiforientation_p.h #439167:439168
 @ -71,7 +71,7  @
       stream >> byte;
 
       // consume 0xff's used for padding
-      while(byte == 0xff)
+      while(byte == 0xff && !stream.atEnd())
         stream >> byte;
 
       // stop when we reach APP0 marker or start of image data
    
    
More information about the Digikam-devel
mailing list