mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-03 02:58:02 +00:00
lavd/fbdev_enc: remove redundant assignments
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
This commit is contained in:
parent
8b30702c44
commit
3050e53f2b
@ -190,7 +190,7 @@ static int fbdev_get_device_list(AVFormatContext *s, AVDeviceInfoList *device_li
|
||||
struct fb_fix_screeninfo fixinfo;
|
||||
char device_file[12];
|
||||
AVDeviceInfo *device = NULL;
|
||||
int i, fd = -1, ret = 0;
|
||||
int i, fd, ret = 0;
|
||||
const char *default_device = ff_fbdev_default_device();
|
||||
|
||||
if (!device_list)
|
||||
@ -227,7 +227,6 @@ static int fbdev_get_device_list(AVFormatContext *s, AVDeviceInfoList *device_li
|
||||
default_device = NULL;
|
||||
}
|
||||
close(fd);
|
||||
fd = -1;
|
||||
continue;
|
||||
|
||||
fail_device:
|
||||
@ -236,10 +235,8 @@ static int fbdev_get_device_list(AVFormatContext *s, AVDeviceInfoList *device_li
|
||||
av_free(device->device_description);
|
||||
av_freep(&device);
|
||||
}
|
||||
if (fd >= 0) {
|
||||
if (fd >= 0)
|
||||
close(fd);
|
||||
fd = -1;
|
||||
}
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user