06403981e1
fcb076c Various fixes for errors found by coverity static analysis (#109) d98ab38 Merge branch 'pppd_print_changes' of https://github.com/nlhintz/ppp into nlhintz-pppd_print_changes Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
14 lines
369 B
Diff
14 lines
369 B
Diff
--- a/pppd/plugins/pppol2tp/pppol2tp.c
|
|
+++ b/pppd/plugins/pppol2tp/pppol2tp.c
|
|
@@ -152,6 +152,10 @@ static int setdevname_pppol2tp(char **ar
|
|
if (pppol2tp_fd_str == NULL)
|
|
novm("PPPoL2TP FD");
|
|
|
|
+ pppol2tp_fd_str = strdup(*argv);
|
|
+ if (pppol2tp_fd_str == NULL)
|
|
+ novm("PPPoL2TP FD");
|
|
+
|
|
/* Setup option defaults. Compression options are disabled! */
|
|
|
|
modem = 0;
|