]> granicus.if.org Git - neomutt/commit
Use mutt_buffer_init instead of memset 370/head
authorGuillaume Brogi <gui-gui@netcourrier.com>
Mon, 6 Feb 2017 19:27:10 +0000 (20:27 +0100)
committerGuillaume Brogi <gui-gui@netcourrier.com>
Thu, 9 Feb 2017 18:47:38 +0000 (19:47 +0100)
commite2a16c6fc9058c0a2e8f59a86abce7bdb866ecd6
treea4558f76b3199740a027e338f5fe3d47cd031c96
parent83d929dce35cc0239b3785a0ba3c3943c8a0eed0
Use mutt_buffer_init instead of memset

The mutt_buffer_init function does a memset to 0 of its argument, so use
it instead of doing a manual memset.

I noticed (thanks to @zmo) that a number of buffer used in hooks where
initialised using memset instead of this dedicated function. This
remedies to that.

Fixes #369
hook.c