Description of problem: unchecked malloc Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info: ./netkit-ftp-0.17/ftp/ruserpass.c:139: *aname = malloc((unsigned) strlen(tokval) + 1); ### return value of malloc, *aname, passed to strcpy without checking. ./netkit-ftp-0.17/ftp/ruserpass.c:160: *apass = malloc((unsigned) strlen(tokval) + 1); ### return value of malloc, *apass, passed to strcpy without checking.