home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / gnu / utils / bug / 2332 < prev    next >
Encoding:
Text File  |  1993-01-06  |  697 b   |  28 lines

  1. Newsgroups: gnu.utils.bug
  2. Path: sparky!uunet!spool.mu.edu!uwm.edu!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!la.tce.COM!pierre
  3. From: pierre@la.tce.COM (Pierre Willard)
  4. Subject: pb malloc BFD
  5. Message-ID: <9301052233.AA04539@_la.tce.com>
  6. Sender: gnulists@ai.mit.edu
  7. Reply-To: pierre@la.tce.com
  8. Organization: GNUs Not Usenet
  9. Distribution: gnu
  10. Date: Tue, 5 Jan 1993 22:33:03 GMT
  11. Approved: bug-gnu-utils@prep.ai.mit.edu
  12. Lines: 14
  13.  
  14. The BFD library (binutils-2.0) contains some calls
  15. to the malloc function without testing of the result.
  16.  
  17. In particular in bfd/seclet.c :
  18.  
  19.      char *d = malloc(seclet->size);
  20.  
  21. Should be replaced by :
  22.  
  23.      char *d = bfd_xmalloc(seclet->size);
  24.  
  25. regards
  26. Pierre Willard
  27.  
  28.