1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-27 08:23:49 +03:00

r4037: fixed a bunch of "might be uninitialised" warnings after enabling -O1 in my compile

This commit is contained in:
Andrew Tridgell
2004-12-02 04:51:56 +00:00
committed by Gerald (Jerry) Carter
parent f572fe6d29
commit 0928b1f5b6
22 changed files with 50 additions and 48 deletions

View File

@@ -209,7 +209,7 @@ static WERROR dcom_create_object_remote(struct dcom_context *ctx, struct GUID *c
WERROR dcom_create_object(struct dcom_context *ctx, struct GUID *clsid, const char *server, int num_ifaces, struct GUID *iid, struct dcom_interface_p ***ip, WERROR *results)
{
struct dcom_interface_p *factory, *iunk;
struct dcom_interface_p *factory, *iunk = NULL;
struct QueryInterface qr;
struct Release rr;
struct CreateInstance cr;