aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox/0012-microcom-segfault.patch
Commit message (Collapse)AuthorAgeFilesLines
* main/busybox: upgrade to 1.28.1Sören Tempel2018-03-111-31/+0
|
* main/busybox: Fixed segfault in microcomMarian Buschsieweke2017-08-031-0/+31
microcom does not check if required parameter "TTY" is present. Thus, bb_basename() is called with a NULL pointer, if microcom is started without any parameter. This in turn calls strlen() on this NULL pointer, resulting in a segfault. The supplied patch adds a check for the missing TTY parameter and prints usage when it is missing.