Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 220397
b: refs/heads/master
c: b3495ce
h: refs/heads/master
i:
  220395: 3919132
v: v3
  • Loading branch information
Vasiliy Kulikov authored and Greg Kroah-Hartman committed Oct 19, 2010
1 parent f47239f commit 60ebb38
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 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: 6a56486716d54d2c16c46cde6a5cf10062cd6719
refs/heads/master: b3495cebaaa64c9e6df9ab663dfb75e86a08f9ce
7 changes: 5 additions & 2 deletions trunk/drivers/staging/speakup/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2259,8 +2259,11 @@ static int __init speakup_init(void)
first_console = kzalloc(sizeof(*first_console), GFP_KERNEL);
if (!first_console)
return -ENOMEM;
if (speakup_kobj_init() < 0)
return -ENOMEM;
err = speakup_kobj_init();
if (err) {
kfree(first_console);
return err;
}

reset_default_chars();
reset_default_chartab();
Expand Down

0 comments on commit 60ebb38

Please sign in to comment.