Fix bug #7617 - smbd coredump due to uninitialized variables in the performance count...
authorJeremy Allison <jra@samba.org>
Thu, 12 Aug 2010 21:24:01 +0000 (14:24 -0700)
committerKarolin Seeger <kseeger@samba.org>
Mon, 27 Sep 2010 19:28:59 +0000 (21:28 +0200)
commit514fa59e53da7b106d58e2dbb85c4304036be622
tree8d39ecf106f78bf38ee8084a0738748b67b3fa95
parentaefad86f512c035d75190031f31eca30df2b4736
Fix bug #7617 - smbd coredump due to uninitialized variables in the performance counter code.

In the file rpc_server.c, function _winreg_QueryValue()

uint8_t *outbuf

Should be :

uint8_t *outbuf = NULL;

As it is later freed by

      if (free_buf) SAFE_FREE(outbuf);

in some cases, this frees the unintialized outbuf, which causes a coredump.
(cherry picked from commit 84fd910c347ddfad6f01edbe7f6e25546c8382ee)
(cherry picked from commit 80e65236158d6f1690bf9f153c0eb12d81d56b8a)
source3/rpc_server/srv_winreg_nt.c