From: Martin.Lottermoser@xxxxxxxxxxx Subject: [patch 07/14] Bug#308136: Debian bug 308136 (SEGV in pppd) The function update_db_entry() may only be called if pppdb is not NULL; unfortunately in this situation it is. Other calls to update_db_entry() are protected against this, see, e.g., the end of script_setenv(). --- a/pppd/main.c +++ b/pppd/main.c @@ -1942,9 +1942,11 @@ script_setenv(var, value, iskey) free(p-1); script_env[i] = newstring; #ifdef USE_TDB - if (iskey && pppdb != NULL) - add_db_key(newstring); - update_db_entry(); + if (pppdb != NULL) { + if (iskey) + add_db_key(newstring); + update_db_entry(); + } #endif return; } -- ciao, Marco - To unsubscribe from this list: send the line "unsubscribe linux-ppp" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html