2007-07-13 Joel Sherrill <joel.sherrill@oarcorp.com>

* libcsupport/src/mount.c: Allow null for output parameter.
This commit is contained in:
Joel Sherrill
2007-07-13 19:06:28 +00:00
parent dfef80e803
commit 9076e8d14f
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2007-07-13 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/mount.c: Allow null for output parameter.
2007-07-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* shttpd/compat_rtems.c, shttpd/compat_rtems.h: Add port to listen on

View File

@@ -229,7 +229,8 @@ int mount(
Chain_Append( &rtems_filesystem_mount_table_control, &temp_mt_entry->Node );
*mt_entry = temp_mt_entry;
if ( mt_entry )
*mt_entry = temp_mt_entry;
return 0;