Message ID | tencent_22C6C2E595DEFED1417A98A5736539482809@qq.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | dma-buf: check the return value of kstrdup() | expand |
diff --git a/drivers/dma-buf/selftest.c b/drivers/dma-buf/selftest.c index c60b694..2c29e2a 100644 --- a/drivers/dma-buf/selftest.c +++ b/drivers/dma-buf/selftest.c @@ -50,6 +50,9 @@ static bool apply_subtest_filter(const char *caller, const char *name) bool result = true; filter = kstrdup(__st_filter, GFP_KERNEL); + if (!filter) + return false; + for (sep = filter; (tok = strsep(&sep, ","));) { bool allow = true; char *sl;