mirror of
https://github.com/AuxXxilium/redpill-lkm5.git
synced 2024-11-23 15:01:01 +07:00
chore: check NULL before strlen (#13)
This commit is contained in:
parent
d7e0766776
commit
eaf7be9a14
@ -703,7 +703,7 @@ static int handle_hdio_drive_cmd_ioctl(struct block_device *bdev, fmode_t mode,
|
||||
// use the real serial if it's not empty, other wise use the disk name
|
||||
char * disk_serial;
|
||||
disk_serial = rp_fetch_block_serial(bdev->bd_disk->disk_name);
|
||||
if (strlen(disk_serial) < 3) {
|
||||
if (disk_serial == NULL || strlen(disk_serial) < 3) {
|
||||
disk_serial = bdev->bd_disk->disk_name;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user