OS: Don't leak connection translation table on regeneration

(cherry picked from commit e868e0bc0d2318e62707d3ae68532b0029959154)
This commit is contained in:
Daniel Stone 2007-12-28 15:48:25 +02:00
parent 30fc8053a5
commit 38d8cfaaff

View File

@ -353,7 +353,8 @@ InitConnectionLimits(void)
#endif
#if !defined(WIN32)
ConnectionTranslation = (int *)xnfalloc(sizeof(int)*(lastfdesc + 1));
if (!ConnectionTranslation)
ConnectionTranslation = (int *)xnfalloc(sizeof(int)*(lastfdesc + 1));
#else
InitConnectionTranslation();
#endif