Menu

#5 bzero() issues

v1.0
open
general (2)
5
2003-03-23
2003-03-22
Dylan Neild
No

bzero is used in various places.

1. bzero is depreceated and needs to be replaced with memset() in all instances.

1. Some of these are not needed. Identify what are the minimum necessary/safe uses of bzero/memset and remove all the others.

Discussion

  • Dylan Neild

    Dylan Neild - 2003-03-23
    • priority: 9 --> 5
     
  • Dylan Neild

    Dylan Neild - 2003-03-23

    Logged In: YES
    user_id=738160

    All calls to bzero() have been replaced with memset() calls.
    Determing which ones are necessary at all is still needed.

     
  • Ben Asselstine

    Ben Asselstine - 2003-04-01

    Logged In: YES
    user_id=564659

    bzero should be removed completely
    it is safe to replace all occurrances of bzero with memset.

     

Log in to post a comment.