127702724Smrg/* 227702724Smrg 327702724SmrgCopyright 1988, 1998 The Open Group 427702724Smrg 527702724SmrgPermission to use, copy, modify, distribute, and sell this software and its 627702724Smrgdocumentation for any purpose is hereby granted without fee, provided that 727702724Smrgthe above copyright notice appear in all copies and that both that 827702724Smrgcopyright notice and this permission notice appear in supporting 927702724Smrgdocumentation. 1027702724Smrg 1127702724SmrgThe above copyright notice and this permission notice shall be included in 1227702724Smrgall copies or substantial portions of the Software. 1327702724Smrg 1427702724SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1527702724SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1627702724SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 1727702724SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 1827702724SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 1927702724SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 2027702724Smrg 2127702724SmrgExcept as contained in this notice, the name of The Open Group shall not be 2227702724Smrgused in advertising or otherwise to promote the sale, use or other dealings 2327702724Smrgin this Software without prior written authorization from The Open Group. 2427702724Smrg 2527702724Smrg*/ 2627702724Smrg 2727702724Smrg#ifdef HAVE_CONFIG_H 2827702724Smrg#include <config.h> 2927702724Smrg#endif 3027702724Smrg#include <X11/Xauth.h> 3127702724Smrg#include <stdlib.h> 3227702724Smrg 3327702724Smrgvoid 3427702724SmrgXauDisposeAuth (Xauth *auth) 3527702724Smrg{ 3627702724Smrg if (auth) { 377cea3689Smrg free (auth->address); 387cea3689Smrg free (auth->number); 397cea3689Smrg free (auth->name); 4027702724Smrg if (auth->data) { 4195b7a5c8Smrg#ifdef HAVE_EXPLICIT_BZERO 42ae545d91Smrg explicit_bzero (auth->data, auth->data_length); 43ae545d91Smrg#elif HAVE_EXPLICIT_MEMSET 44ae545d91Smrg explicit_memset (auth->data, 0, auth->data_length); 4595b7a5c8Smrg#else 46ae545d91Smrg bzero (auth->data, auth->data_length); 4795b7a5c8Smrg#endif 48ae545d91Smrg free (auth->data); 4927702724Smrg } 5095b7a5c8Smrg free (auth); 5127702724Smrg } 5227702724Smrg return; 5327702724Smrg} 54