Add braces

This commit is contained in:
sukeban 2016-01-25 14:27:41 -08:00
parent 3b039d5910
commit 070cbc63ee
1 changed files with 2 additions and 1 deletions

View File

@ -32,8 +32,9 @@
for (size_t i = 0; i < count; i++) {
CGImageRef image = CGImageSourceCreateImageAtIndex(source, i, NULL);
if (!image)
if (!image) {
continue;
}
duration += [self sd_frameDurationAtIndex:i source:source];