X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fconn.c;h=e7bf1db891cba610e4737a4e5f8347e5ff732a36;hp=46a3ecc2caefe0c1dc5fe41754357aadc08db128;hb=1680ea02da10dff49748214f6e01538808c7ee65;hpb=be97fa8ab1c47a17f6d4c17c69de89d084dc1402 diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 46a3ecc2..e7bf1db8 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -932,6 +932,10 @@ GLOBAL void Conn_SetPassword( CONN_ID Idx, const char *Pwd ) { assert( Idx > NONE ); + + if (My_Connections[Idx].pwd) + free(My_Connections[Idx].pwd); + My_Connections[Idx].pwd = strdup(Pwd); if (My_Connections[Idx].pwd == NULL) { Log(LOG_EMERG, "Can't allocate memory! [Conn_SetPassword]");