mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
The code enabled when "DEBUG" is defined uses mem_alloc(), which is a malloc(.., M_RPC, M_WAITOK | M_ZERO), but then calls gss_release_buffer() which does a free(.., M_GSSAPI) to free the memory. This patch fixes the problem by replacing mem_alloc() with a malloc(.., M_GSSAPI, M_WAITOK | M_ZERO). This bug affects almost no one, since the sources are not normally built with "DEBUG" defined. Submitted by: peter@ifm.liu.se MFC after: 2 weeks |
||
|---|---|---|
| .. | ||
| rpcsec_gss.c | ||
| rpcsec_gss_conf.c | ||
| rpcsec_gss_int.h | ||
| rpcsec_gss_misc.c | ||
| rpcsec_gss_prot.c | ||
| svc_rpcsec_gss.c | ||