Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 337961
b: refs/heads/master
c: bc1e158
h: refs/heads/master
i:
  337959: 8f9e359
v: v3
  • Loading branch information
YAMANE Toshiaki authored and Greg Kroah-Hartman committed Nov 15, 2012
1 parent 0668404 commit f8b874d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7ced63cf7ecfa572d7890a2112997dd75837d153
refs/heads/master: bc1e1581763de164c79e76669f754b3608680153
8 changes: 4 additions & 4 deletions trunk/drivers/staging/omapdrm/omap_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -218,17 +218,17 @@ static inline int objects_lookup(struct drm_device *dev,

for (i = 0; i < n; i++) {
bos[i] = drm_gem_object_lookup(dev, filp, handles[i]);
if (!bos[i]) {
if (!bos[i])
goto fail;
}

}

return 0;

fail:
while (--i > 0) {
while (--i > 0)
drm_gem_object_unreference_unlocked(bos[i]);
}

return -ENOENT;
}

Expand Down

0 comments on commit f8b874d

Please sign in to comment.