c.h:

Vadim B. Mikheev <vadim4o@yahoo.com>

Commit: 6855820e8f13d798f271dc1498cb56ceb48dc521
Author: Vadim B. Mikheev <vadim4o@yahoo.com>
Date: 1997-10-27T12:07:13Z
Releases: 7.1.1
c.h:
#define StrNCpy(dst,src,len)    \
	(strncpy((dst),(src),(len)),(len > 0) ? *((dst)+(len)-1)='\0' : \
	NULL,(void)(dst))
	     ^^^^^^ - to avoid "value computed is not used" from gcc
	in ma-a-any places (should to fix thouse places instead, but ...
	time)

config.h.in:
/*
 * TBL_FREE_CMD_MEMORY: free memory allocated for an user query inside
 * transaction block after this query is done.
 */
#define TBL_FREE_CMD_MEMORY
- this is default now.

Files

PathChange+/−
src/include/c.h modified +2 −2
src/include/config.h.in modified +6 −0