Merged revisions 274579 via svnmerge from
authorRichard Mudgett <rmudgett@digium.com>
Wed, 7 Jul 2010 18:20:00 +0000 (18:20 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Wed, 7 Jul 2010 18:20:00 +0000 (18:20 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r274579 | rmudgett | 2010-07-07 13:12:41 -0500 (Wed, 07 Jul 2010) | 1 line

  Close the DAHDI FD on error when processing chan_dahdi toneduration config parameter.
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@274595 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_dahdi.c

index e2cad3f..2e4de8c 100644 (file)
@@ -17043,6 +17043,7 @@ static int process_dahdi(struct dahdi_chan_conf *confp, const char *cat, struct
                                        res = ioctl(ctlfd, DAHDI_SET_DIALPARAMS, &dps);
                                        if (res < 0) {
                                                ast_log(LOG_ERROR, "Invalid tone duration: %d ms at line %d: %s\n", toneduration, v->lineno, strerror(errno));
                                        res = ioctl(ctlfd, DAHDI_SET_DIALPARAMS, &dps);
                                        if (res < 0) {
                                                ast_log(LOG_ERROR, "Invalid tone duration: %d ms at line %d: %s\n", toneduration, v->lineno, strerror(errno));
+                                               close(ctlfd);
                                                return -1;
                                        }
                                }
                                                return -1;
                                        }
                                }