CVSROOT: /cvs Module name: src Changes by: [email protected] 2020/08/22 10:12:12
Modified files:
sys/net : if_spppsubr.c
Log message:
Add sizes to free() calls
Simply reuse struct size or buffer length variables for free() the very
same way they are used with malloc(), often within the same scope and/or
only a few lines above.
This leaves only a few selected free() calls with size zero in due to the
fact that there is currently no variable to keep track of name and secret
string lengths.
OK mvs
