Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219774
b: refs/heads/master
c: e5a7dc5
h: refs/heads/master
v: v3
  • Loading branch information
Vasiliy Kulikov authored and Greg Kroah-Hartman committed Sep 5, 2010
1 parent 2020670 commit 0e2eeab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d5ed54322e54d48e5fa66dff0086b79211f1cde7
refs/heads/master: e5a7dc54eedde81e87832e02ba0f6b8c5a4d2d48
8 changes: 8 additions & 0 deletions trunk/drivers/staging/tidspbridge/rmgr/dbdcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,10 @@ int dcd_get_object_def(struct dcd_manager *hdcd_mgr,

/* Allocate zeroed buffer. */
psz_coff_buf = kzalloc(ul_len + 4, GFP_KERNEL);
if (psz_coff_buf == NULL) {
status = -ENOMEM;
goto func_end;
}
#ifdef _DB_TIOMAP
if (strstr(dcd_key->path, "iva") == NULL) {
/* Locate section by objectID and read its content. */
Expand Down Expand Up @@ -571,6 +575,10 @@ int dcd_get_objects(struct dcd_manager *hdcd_mgr,

/* Allocate zeroed buffer. */
psz_coff_buf = kzalloc(ul_len + 4, GFP_KERNEL);
if (psz_coff_buf == NULL) {
status = -ENOMEM;
goto func_cont;
}
#ifdef _DB_TIOMAP
if (strstr(sz_coff_path, "iva") == NULL) {
/* Locate section by objectID and read its content. */
Expand Down

0 comments on commit 0e2eeab

Please sign in to comment.