cryptodotis / irssi-otr

LibOTR functionality in Irssi.
GNU General Public License v2.0
183 stars 24 forks source link

Invalid use of asprintf in create_account_name() #27

Closed asn-d6 closed 11 years ago

asn-d6 commented 11 years ago

The contents of the first argument of asprintf() are undefined if the call fails. create_account_name() seems to think that 'accname' will be NULL if the call fails, which is wrong.

Check out http://blogs.23.nu/ilja/2006/10/antville-12995/ for more details.

Also, check the codebase for more similar uses of asprintf().