Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'staging-7.1-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging

Pull staging driver fixes from Greg KH:
"Here are two small staging driver fixes for 7.1-rc3. They are:

- vme_user root device leak fix

- NULL dereference bugfix in the rtl8723bs driver

Both of these have been in linux-next all this week with no reported
issues"

* tag 'staging-7.1-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging:
staging: rtl8723bs: os_dep: avoid NULL pointer dereference in rtw_cbuf_alloc
staging: vme_user: fix root device leak on init failure

+4 -1
+2 -1
drivers/staging/rtl8723bs/os_dep/osdep_service.c
··· 194 194 struct rtw_cbuf *cbuf; 195 195 196 196 cbuf = kzalloc_flex(*cbuf, bufs, size); 197 - cbuf->size = size; 197 + if (cbuf) 198 + cbuf->size = size; 198 199 199 200 return cbuf; 200 201 }
+2
drivers/staging/vme_user/vme_fake.c
··· 1230 1230 err_driver: 1231 1231 kfree(fake_bridge); 1232 1232 err_struct: 1233 + root_device_unregister(vme_root); 1234 + 1233 1235 return retval; 1234 1236 } 1235 1237