<div>
<style type="text/css">
td a, td a:link, td a:visited, td a:hover, td a:active {background:transparent;font-family: Arial, sans-serif;text-decoration:underline;}
td a:link {color:#369;}
td a:visited {color:#444;}
td a:hover, td a:active {color:#036;}
td a:hover {text-decoration:none;}
</style>
<font size="2" color="black" face="Arial, Helvetica, sans-serif" style="font-family: Arial, sans-serif;font-size: 13px;color:#000">

    <table align="center" border="0" cellpadding="5" cellspacing="0" width="98%">
        <tr>
            <td style="vertical-align:top">
            <table width="100%" border="0" cellpadding="0" cellspacing="0" style="background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;">
            <tr>
                <td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;padding:5px 10px">
                    <a href="http://bamboo.asterisk.org/browse/ASTTRUNK-FREEBSD81-I386/log" style="font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#000">ASTTRUNK-FREEBSD81-I386-334</a>
                    <span style="font-family: Arial, sans-serif; font-size: 14px;"> has been queued, but there's no agent capable of building it.</span>
                </td>
            </tr>
            </table>
            <br>

  <table width="100%" border="0" cellpadding="0" cellspacing="0" style="background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;">
        <tr>
            <td width="60%" style="font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px">
                <a href="http://bamboo.asterisk.org/browse/ASTTRUNK-FREEBSD81-I386/log" style="text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036" >Code Changes</a>
            </td>
            <td width="40%" style="font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px">
            </td>
        </tr>
   </table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
            <tr><td width="20" style="vertical-align:top;padding:10px 0 0px 10px">
                    <img src="http://bamboo.asterisk.org/images/icons/businessman.gif" width="15" height="15">
                </td>
                <td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px">
                    <a href="http://bamboo.asterisk.org/browse/author/rmudgett" style="font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000">
                       rmudgett</a><br>
                    Merged revisions 334297 via svnmerge from <br/>
<a href="https://origsvn.digium.com/svn/asterisk/branches/10">https://origsvn.digium.com/svn/asterisk/branches/10</a><br/>
<br/>
................<br/>
&nbsp;&nbsp;r334297 | rmudgett | 2011-09-02 12:15:08 -0500 (Fri, 02 Sep 2011) | 46 lines<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Merged revisions 334296 via svnmerge from <br/>
&nbsp;&nbsp;<a href="https://origsvn.digium.com/svn/asterisk/branches/1.8">https://origsvn.digium.com/svn/asterisk/branches/1.8</a><br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;........<br/>
&nbsp;&nbsp;&nbsp;&nbsp;r334296 | rmudgett | 2011-09-02 12:10:58 -0500 (Fri, 02 Sep 2011) | 39 lines<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Fix potential memory allocation failure crashes in config.c.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Added required checks to the returned memory allocation pointers to<br/>
&nbsp;&nbsp;&nbsp;&nbsp;prevent crashes.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Made ast_include_rename() create a replacement ast_variable list node if<br/>
&nbsp;&nbsp;&nbsp;&nbsp;the new filename is longer than the available space.&nbsp; Fixes potential<br/>
&nbsp;&nbsp;&nbsp;&nbsp;crash and memory leak.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Factored out ast_variable_move() from ast_variable_update() so<br/>
&nbsp;&nbsp;&nbsp;&nbsp;ast_include_rename() can also use it when creating a replacement<br/>
&nbsp;&nbsp;&nbsp;&nbsp;ast_variable list node.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Made the filename stuffed at the end of the struct a minimum allocated<br/>
&nbsp;&nbsp;&nbsp;&nbsp;size in ast_variable_new() in case ast_include_rename() changes the stored<br/>
&nbsp;&nbsp;&nbsp;&nbsp;filename.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Constify struct char pointers pointing to strings stuffed at the end of<br/>
&nbsp;&nbsp;&nbsp;&nbsp;the struct for: ast_variable, cache_file_mtime, and ast_config_map.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Factored out cfmtime_new() to remove inlined code and allow some struct<br/>
&nbsp;&nbsp;&nbsp;&nbsp;pointers to become const.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Removed the list lock from struct cache_file_mtime that was never used.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Added doxygen comments to several structure elements and better<br/>
&nbsp;&nbsp;&nbsp;&nbsp;documented what strings are stuffed at the struct end char array.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Reworked ast_config_text_file_save() and set_fn() to handle allocation<br/>
&nbsp;&nbsp;&nbsp;&nbsp;failure of the include file scratch pad object tracking blank lines.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Made ast_config_text_file_save() fn[] declared with PATH_MAX to ensure<br/>
&nbsp;&nbsp;&nbsp;&nbsp;it is long enough for any filename with path.&nbsp; Also reduced the number of<br/>
&nbsp;&nbsp;&nbsp;&nbsp;container fileset buckets from a rediculus 180,000 to 1023.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;JIRA AST-618<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Review: <a href="https://reviewboard.asterisk.org/r/1378/">https://reviewboard.asterisk.org/r/1378/</a><br/>
&nbsp;&nbsp;........<br/>
................<br/>

                </td>
                <td width="60" style="font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px">
                     (334304)
                </td></tr>
            <tr><td width="20" style="vertical-align:top;padding:10px 0 0px 10px">
                    <img src="http://bamboo.asterisk.org/images/icons/businessman.gif" width="15" height="15">
                </td>
                <td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px">
                    <a href="http://bamboo.asterisk.org/browse/author/rmudgett" style="font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000">
                       rmudgett</a><br>
                    Merged revisions 334357 via svnmerge from <br/>
<a href="https://origsvn.digium.com/svn/asterisk/branches/10">https://origsvn.digium.com/svn/asterisk/branches/10</a><br/>
<br/>
................<br/>
&nbsp;&nbsp;r334357 | rmudgett | 2011-09-02 16:08:16 -0500 (Fri, 02 Sep 2011) | 26 lines<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Merged revisions 334355 via svnmerge from <br/>
&nbsp;&nbsp;<a href="https://origsvn.digium.com/svn/asterisk/branches/1.8">https://origsvn.digium.com/svn/asterisk/branches/1.8</a><br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;........<br/>
&nbsp;&nbsp;&nbsp;&nbsp;r334355 | rmudgett | 2011-09-02 15:59:49 -0500 (Fri, 02 Sep 2011) | 19 lines<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;MusicOnHold has extra unref which may lead to memory corruption and crash.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;The problem happens when a call is disconnected and you had started a MOH <br/>
&nbsp;&nbsp;&nbsp;&nbsp;class that does not use the files mode.&nbsp; If you define REF_DEBUG and <br/>
&nbsp;&nbsp;&nbsp;&nbsp;recreate the problem, it will announce itself with the following warning: <br/>
&nbsp;&nbsp;&nbsp;&nbsp;Attempt to unref mohclass 0xb70722e0 (default) when only 1 ref remained, <br/>
&nbsp;&nbsp;&nbsp;&nbsp;and class is still in a container!&nbsp; <br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;* Fixed moh_alloc() and moh_release() functions not handling the<br/>
&nbsp;&nbsp;&nbsp;&nbsp;state-&gt;class reference consistently.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;(closes issue ASTERISK-18346)<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Reported by: Mark Murawski<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Patches:<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;jira_asterisk_18346_v1.8.patch (license #5621) patch uploaded by rmudgett<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Tested by: rmudgett, Mark Murawski<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Review: <a href="https://reviewboard.asterisk.org/r/1404/">https://reviewboard.asterisk.org/r/1404/</a><br/>
&nbsp;&nbsp;........<br/>
................<br/>

                </td>
                <td width="60" style="font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px">
                     (334358)
                </td></tr>
            <tr><td width="20" style="vertical-align:top;padding:10px 0 0px 10px">
                    <img src="http://bamboo.asterisk.org/images/icons/businessman.gif" width="15" height="15">
                </td>
                <td width="100%" style="font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px">
                    <a href="http://bamboo.asterisk.org/browse/author/irroot" style="font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000">
                       irroot</a><br>
                    Merged revisions 334455 via svnmerge from <br/>
<a href="https://origsvn.digium.com/svn/asterisk/branches/10">https://origsvn.digium.com/svn/asterisk/branches/10</a><br/>
<br/>
................<br/>
&nbsp;&nbsp;r334455 | irroot | 2011-09-06 15:58:56 +0200 (Tue, 06 Sep 2011) | 18 lines<br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;Merged revisions 334453 via svnmerge from <br/>
&nbsp;&nbsp;<a href="https://origsvn.digium.com/svn/asterisk/branches/1.8">https://origsvn.digium.com/svn/asterisk/branches/1.8</a><br/>
&nbsp;&nbsp;<br/>
&nbsp;&nbsp;........<br/>
&nbsp;&nbsp;&nbsp;&nbsp;r334453 | irroot | 2011-09-06 15:48:03 +0200 (Tue, 06 Sep 2011) | 13 lines<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Make SQL query in app_voicemail.c portable LIMIT is not portable.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Regression from r312212<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;(closes issue ASTERISK-18255)<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Reported by: Leif Madsen<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Tested by: Leif Madsen<br/>
&nbsp;&nbsp;&nbsp;&nbsp;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Review: <a href="https://reviewboard.asterisk.org/r/1415/">https://reviewboard.asterisk.org/r/1415/</a><br/>
&nbsp;&nbsp;........<br/>
................<br/>

                </td>
                <td width="60" style="font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px">
                     (334472)
                </td></tr>
    <tr><td colspan="3">
        <br/><a href="http://bamboo.asterisk.org/browse/ASTTRUNK-FREEBSD81-I386/log" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">3 more changes...</a>
    </td></tr>
</table><br>

<table width="100%" border="0" cellpadding="0" cellspacing="0">
    <tr><td colspan="2" align="center" style="font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px">
        Email generated by <a href="http://bamboo.asterisk.org" style="font-family: Arial, sans-serif; font-size: 11px; color:#999">Atlassian Bamboo</a> - if you wish to stop receiving these emails edit your  <a href="http://bamboo.asterisk.org/profile/userNotifications.action" style="font-family: Arial, sans-serif; font-size: 11px; color:#999">user profile</a> or <a href="http://bamboo.asterisk.org/viewAdministrators.action" style="font-family: Arial, sans-serif; font-size: 11px; color:#999">notify your administrator</a>
    </td>
    </tr>
</table>

            </td>
            <td width="150" style="vertical-align:top">
    <table width="150" border="0" cellpadding="0" cellspacing="0" style="background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;">
        <tr>
            <td style="font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px">
                Actions
            </td>
        </tr>
    </table>
    <table width="150" border="0" cellpadding="0" cellspacing="0" style="background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;">
        <tr>
            <td style="font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7">
    <a href="http://bamboo.asterisk.org/browse/ASTTRUNK-FREEBSD81-I386/log" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">View Online</a>
    <br>
    <a href="http://bamboo.asterisk.org/build/admin/stopPlan.action?planKey=ASTTRUNK-FREEBSD81-I386" style="font-family: Arial, sans-serif; font-size: 13px; color:#036">Stop Build</a>
    <br>
            </td>
        </tr>
    </table>
            </td>
        <tr>
    </table>
</font>
</div>