diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2005-11-07 04:01:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:54:02 -0500 |
commit | 735d5661d5c5f023a78fbe68e771e261040ff1b7 (patch) | |
tree | b9865f0322d8e74661639f5f33b1897b23004659 /drivers/char/n_hdlc.c | |
parent | fa671646f61182cd18234461a6e65f50c6558695 (diff) |
[PATCH] kfree cleanup: drivers/char
This is the drivers/char/ part of the big kfree cleanup patch.
Remove pointless checks for NULL prior to calling kfree() in drivers/char/.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/n_hdlc.c')
-rw-r--r-- | drivers/char/n_hdlc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/char/n_hdlc.c b/drivers/char/n_hdlc.c index 5079beda69b5..c3660d8781a4 100644 --- a/drivers/char/n_hdlc.c +++ b/drivers/char/n_hdlc.c | |||
@@ -264,8 +264,7 @@ static void n_hdlc_release(struct n_hdlc *n_hdlc) | |||
264 | } else | 264 | } else |
265 | break; | 265 | break; |
266 | } | 266 | } |
267 | if (n_hdlc->tbuf) | 267 | kfree(n_hdlc->tbuf); |
268 | kfree(n_hdlc->tbuf); | ||
269 | kfree(n_hdlc); | 268 | kfree(n_hdlc); |
270 | 269 | ||
271 | } /* end of n_hdlc_release() */ | 270 | } /* end of n_hdlc_release() */ |