From: Carl Worth Date: Fri, 23 Oct 2009 21:55:50 +0000 (-0700) Subject: Remove some unneeded initializers. X-Git-Tag: 0.1~748 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;ds=sidebyside;h=fb1bae07002d45138832eacb280419dbd7a19774;hp=fb1bae07002d45138832eacb280419dbd7a19774;p=notmuch Remove some unneeded initializers. Some people might argue for more initializers to be "safer", but I actually prefer to leave things this way. It saves typing, but the real benefit is that the things that do require initialization stand out so we know to watch them carefully. And with valgrind, we actually get to catch errors earlier if we *don't* initialize them. So that can be "safer" ironically enough. ---