mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-14 20:00:01 +01:00
add net io logger (only enabled if compiled STRICT_CHECKING and env var VEEJAY_LOG_NET_IO="on" )
fixed corrupted header in tag type network for unicast/mcast fixed segfault on listing v4l2 devices when there is none
This commit is contained in:
@@ -1777,8 +1777,8 @@ char **v4l2_get_device_list()
|
||||
const char prefix[] = "/sys/class/video4linux/";
|
||||
const char v4lprefix[] = "/dev/";
|
||||
if( (dir = opendir( prefix )) == NULL ) {
|
||||
veejay_msg(VEEJAY_MSG_WARNING,"Failed to open '%s':%d, %s", prefix, errno,strerror(errno));
|
||||
return v4l2_dummy_list();
|
||||
veejay_msg(VEEJAY_MSG_WARNING,"Failed to open '%s':%s", prefix, strerror(errno));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
char *list[255];
|
||||
|
||||
Reference in New Issue
Block a user