diff options
| author | Thibaut VARÈNE | 2020-08-18 09:57:31 +0000 |
|---|---|---|
| committer | Adrian Schmutzler | 2020-08-18 10:00:55 +0000 |
| commit | d0498872ff71a79f0676cfc6b6b547c499bff712 (patch) | |
| tree | dff9da0a53e6dd9d970cbbee3145136b55ae9f7a | |
| parent | 5388c725177bc0168c0e67b12de75e1086a2dd09 (diff) | |
| download | openwrt-d0498872ff71a79f0676cfc6b6b547c499bff712.tar.gz | |
generic: platform/mikrotik: fix incorrect test
The test is meant to check the result of the preceding kmalloc()
Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
| -rw-r--r-- | target/linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c b/target/linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c index 4559418de7..8861814be4 100644 --- a/target/linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c +++ b/target/linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c @@ -480,7 +480,7 @@ static int hc_wlan_data_unpack_lzor(const u8 *inbuf, size_t inlen, /* Temporary buffer same size as the outbuf */ templen = *outlen; tempbuf = kmalloc(templen, GFP_KERNEL); - if (!outbuf) + if (!tempbuf) return -ENOMEM; /* Concatenate into the outbuf */ |