<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2010-07-21)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>

        * timer/timer.c: Do not do the indirect call if NULL.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/i386/pc386/ChangeLog.diff?r1=text&tr1=1.258&r2=text&tr2=1.259&diff_format=h">M</a></td><td width='1%'>1.259</td><td width='100%'>c/src/lib/libbsp/i386/pc386/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/i386/pc386/timer/timer.c.diff?r1=text&tr1=1.29&r2=text&tr2=1.30&diff_format=h">M</a></td><td width='1%'>1.30</td><td width='100%'>c/src/lib/libbsp/i386/pc386/timer/timer.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/i386/pc386/ChangeLog:1.258 rtems/c/src/lib/libbsp/i386/pc386/ChangeLog:1.259
--- rtems/c/src/lib/libbsp/i386/pc386/ChangeLog:1.258   Mon Jun 14 11:01:06 2010
+++ rtems/c/src/lib/libbsp/i386/pc386/ChangeLog Wed Jul 21 07:33:58 2010
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2010-07-21    Joel Sherrill <joel.sherrill@oarcorp.com>
+
+       * timer/timer.c: Do not do the indirect call if NULL.
+
</font> 2010-06-14        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
        * startup/bspstart.c: Formatting.

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/i386/pc386/timer/timer.c:1.29 rtems/c/src/lib/libbsp/i386/pc386/timer/timer.c:1.30
--- rtems/c/src/lib/libbsp/i386/pc386/timer/timer.c:1.29        Sun May  9 19:29:30 2010
+++ rtems/c/src/lib/libbsp/i386/pc386/timer/timer.c     Wed Jul 21 07:33:58 2010
</font><font color='#997700'>@@ -251,7 +251,8 @@
</font> 
 void Timer_exit(void)
 {
<font color='#880000'>-  return (*Timer_exit_function)();
</font><font color='#000088'>+  if ( Timer_exit_function )
+    return (*Timer_exit_function)();
</font> }
 
 /*
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>