Commit 37420d7ea831113cdbf243e3aa695d1d4cbabedb

Authored by Austin Blanton
1 parent f613d429

Fix neverending UT file

Showing 1 changed file with 1 additions and 1 deletions
openbr/plugins/gallery.cpp
@@ -157,7 +157,7 @@ class BinaryGallery : public Gallery @@ -157,7 +157,7 @@ class BinaryGallery : public Gallery
157 break; 157 break;
158 } 158 }
159 159
160 - *done = stream.atEnd(); 160 + *done = gallery.pos() == gallery.size();
161 return templates; 161 return templates;
162 } 162 }
163 163