Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 97081
b: refs/heads/master
c: 066b211
h: refs/heads/master
i:
  97079: be33036
v: v3
  • Loading branch information
Marcin Slusarz authored and David S. Miller committed May 15, 2008
1 parent cdead3f commit 7b1904f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: ffd8211fb18e1052b2d9eded629cc3c0b872d06a
refs/heads/master: 066b2118976e6e7cc50eed39e2747c75343a23c4
6 changes: 3 additions & 3 deletions trunk/drivers/isdn/capi/capiutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -948,17 +948,17 @@ int __init cdebug_init(void)
{
g_cmsg= kmalloc(sizeof(_cmsg), GFP_KERNEL);
if (!g_cmsg)
return ENOMEM;
return -ENOMEM;
g_debbuf = kmalloc(sizeof(_cdebbuf), GFP_KERNEL);
if (!g_debbuf) {
kfree(g_cmsg);
return ENOMEM;
return -ENOMEM;
}
g_debbuf->buf = kmalloc(CDEBUG_GSIZE, GFP_KERNEL);
if (!g_debbuf->buf) {
kfree(g_cmsg);
kfree(g_debbuf);
return ENOMEM;;
return -ENOMEM;;
}
g_debbuf->size = CDEBUG_GSIZE;
g_debbuf->buf[0] = 0;
Expand Down

0 comments on commit 7b1904f

Please sign in to comment.