Patch | Description | Author | Forwarded | Bugs | Origin | Last update |
---|---|---|---|---|---|---|
zero-height-fix.patch | Check case of zero height diff -u yamdi-1.4-orig/yamdi.c yamdi-1.4/yamdi.c |
Krystian Kichewko <kichewko@nonstopworkshop.com> | no | |||
1000-hardening.patch | Adjusted build rule to accept hardening flags. Also drop unneeded suid root installation and avoid redundant building in clean target. |
Petter Reinholdtsen | no | 2024-10-20 | ||
1010-strn-buffer-overflow.patch | Avoid potential buffer overflow in strncpy. The strncpy() method do not write a null byte at the end if the buffer is to small for the entire string, so ensure there is a null byte present using other means. This avoid the following compiler warning: yamdi.c:830:17: warning: ‘strncpy’ specified bound 256 equals destination size [-Wstringop-truncation] 830 | strncpy(flvmetadata.creator, creator, sizeof(flvmetadata.creator)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
Petter Reinholdtsen | no | 2024-10-20 |