summaryrefslogtreecommitdiff
path: root/sys/i386/linux/linux_misc.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-03-10 23:25:17 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-03-10 23:25:17 +0000
commit0946c36c96b60bd1cef4f5537f394828eacc37a7 (patch)
treeaee2e747f4afb43c337cfaa13e2dca7dc51b7c1f /sys/i386/linux/linux_misc.c
parent874308f7c299c763e804b02a488e94dc50b28169 (diff)
Notes
Diffstat (limited to 'sys/i386/linux/linux_misc.c')
-rw-r--r--sys/i386/linux/linux_misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/i386/linux/linux_misc.c b/sys/i386/linux/linux_misc.c
index 6e736b5464ca..bf242d9e69dd 100644
--- a/sys/i386/linux/linux_misc.c
+++ b/sys/i386/linux/linux_misc.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: linux_misc.c,v 1.13 1996/03/02 19:37:57 peter Exp $
+ * $Id: linux_misc.c,v 1.14 1996/03/04 21:03:07 peter Exp $
*/
#include <sys/param.h>
@@ -344,7 +344,7 @@ printf("uselib: Non page aligned binary %d\n", file_offset);
/* release temporary kernel space */
vm_map_remove(kernel_map, buffer,
- round_page(a_out->a_text + a_out->a_data + file_offset));
+ buffer + round_page(a_out->a_text + a_out->a_data + file_offset));
if (error)
goto cleanup;
@@ -400,7 +400,7 @@ cleanup:
* Release the kernel mapping.
*/
if (a_out)
- vm_map_remove(kernel_map, (vm_offset_t)a_out, PAGE_SIZE);
+ vm_map_remove(kernel_map, (vm_offset_t)a_out, (vm_offset_t)a_out + PAGE_SIZE);
return error;
}