<!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-06-22)</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>sh</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-06-22 Sebastian Huber <sebastian.huber@embedded-brains.de>

        * libcsupport/src/mount.c: Fixed string assignment in mount entry
        allocation.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2448&r2=text&tr2=1.2449&diff_format=h">M</a></td><td width='1%'>1.2449</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/src/mount.c.diff?r1=text&tr1=1.35&r2=text&tr2=1.36&diff_format=h">M</a></td><td width='1%'>1.36</td><td width='100%'>cpukit/libcsupport/src/mount.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2448 rtems/cpukit/ChangeLog:1.2449
--- rtems/cpukit/ChangeLog:1.2448       Mon Jun 21 17:54:54 2010
+++ rtems/cpukit/ChangeLog      Tue Jun 22 08:31:13 2010
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2010-06-22    Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+       * libcsupport/src/mount.c: Fixed string assignment in mount entry
+       allocation.
+
</font> 2010-06-21        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * posix/src/keycreate.c, posix/src/killinfo.c: Remove more ITRON

<font color='#006600'>diff -u rtems/cpukit/libcsupport/src/mount.c:1.35 rtems/cpukit/libcsupport/src/mount.c:1.36
--- rtems/cpukit/libcsupport/src/mount.c:1.35   Wed Jun  9 04:15:50 2010
+++ rtems/cpukit/libcsupport/src/mount.c        Tue Jun 22 08:31:13 2010
</font><font color='#997700'>@@ -111,18 +111,18 @@
</font>   if ( mt_entry != NULL ) {
     char *str = (char *) mt_entry + sizeof( *mt_entry );
 
<font color='#880000'>-    mt_entry->type = str;
</font>     strcpy( str, filesystemtype );
<font color='#000088'>+    str += filesystemtype_size;
+    mt_entry->type = str;
</font> 
     if ( source_or_null != NULL ) {
<font color='#880000'>-      str += filesystemtype_size;
-      mt_entry->dev = str;
</font>       strcpy( str, source_or_null );
<font color='#000088'>+      str += source_size;
+      mt_entry->dev = str;
</font>     }
 
<font color='#880000'>-    str += source_size;
-    mt_entry->target = str;
</font>     strcpy( str, target );
<font color='#000088'>+    mt_entry->target = str;
</font>   }
 
   *target_length_ptr = target_length;
</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>