gsasl  2.2.0
About: GNU SASL is an implementation of the Simple Authentication and Security Layer (SASL).
  Fossies Dox: gsasl-2.2.0.tar.gz  ("unofficial" and yet experimental doxygen-generated source code documentation)  

Loading...
Searching...
No Matches
free.c File Reference
#include "internal.h"
Include dependency graph for free.c:

Go to the source code of this file.

Functions

void gsasl_free (void *ptr)
 

Function Documentation

◆ gsasl_free()

void gsasl_free ( void *  ptr)

gsasl_free: @ptr: memory pointer

Invoke free(@ptr) to de-allocate memory pointer. Typically used on strings allocated by other libgsasl functions.

This is useful on Windows where libgsasl is linked to one CRT and the application is linked to another CRT. Then malloc/free will not use the same heap. This happens if you build libgsasl using mingw32 and the application with Visual Studio.

Since: 0.2.19

Definition at line 41 of file free.c.

References free().

Referenced by _gsasl_scram_client_step(), and _gsasl_scram_server_step().