Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: basesrc/usr.sbin/sushi



Module Name:    basesrc
Committed By:   christos
Date:           Tue Apr  2 18:57:02 UTC 2002

Modified Files:
        basesrc/usr.sbin/sushi: run.c

Log Message:
XXX: this code has a lot of bugs and needs further cleanup.
- don't allocate:
        char *p = malloc(len * sizeof(char *))
  when you mean:
        char *p = malloc(len)
- eliminate duplicated code by creating functions and try not to wrap
- use mvwinnstr instead of mvwinstr


To generate a diff of this commit:
cvs rdiff -r1.4 -r1.5 basesrc/usr.sbin/sushi/run.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.




Home | Main Index | Thread Index | Old Index