svn commit: samba r8813 - in trunk/source/rpc_server: .

jra at samba.org jra at samba.org
Thu Jul 28 01:48:26 GMT 2005


Author: jra
Date: 2005-07-28 01:48:25 +0000 (Thu, 28 Jul 2005)
New Revision: 8813

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8813

Log:
w00t! Fixed crash bug - I can now display the registry...
Jeremy.

Modified:
   trunk/source/rpc_server/srv_pipe.c


Changeset:
Modified: trunk/source/rpc_server/srv_pipe.c
===================================================================
--- trunk/source/rpc_server/srv_pipe.c	2005-07-28 01:26:34 UTC (rev 8812)
+++ trunk/source/rpc_server/srv_pipe.c	2005-07-28 01:48:25 UTC (rev 8813)
@@ -880,7 +880,7 @@
 	/* Grab the SPNEGO blob. */
 	blob = data_blob(NULL,p->hdr.auth_len);
 
-	if (!prs_copy_data_out((char *)&blob.data, rpc_in_p, p->hdr.auth_len)) {
+	if (!prs_copy_data_out(blob.data, rpc_in_p, p->hdr.auth_len)) {
 		DEBUG(0,("pipe_spnego_auth_bind_negotiate: Failed to pull %u bytes - the SPNEGO auth header.\n",
 			(unsigned int)p->hdr.auth_len ));
 		data_blob_free(&blob);



More information about the samba-cvs mailing list