summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/compat/linux/linux_misc.c6
-rw-r--r--sys/i386/linux/linux_misc.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index a0da336..d267130 100644
--- a/sys/compat/linux/linux_misc.c
+++ b/sys/compat/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.32 1997/10/30 10:53:30 kato Exp $
+ * $Id: linux_misc.c,v 1.33 1997/11/06 19:28:58 phk Exp $
*/
#include <sys/param.h>
@@ -289,8 +289,8 @@ linux_uselib(struct proc *p, struct linux_uselib_args *args)
* XXX: this is not complete. it should check current usage PLUS
* the resources needed by this library.
*/
- if (a_out->a_text > MAXTSIZ || a_out->a_data + bss_size > MAXDSIZ ||
- a_out->a_data+bss_size > p->p_rlimit[RLIMIT_DATA].rlim_cur) {
+ if (a_out->a_text > MAXTSIZ ||
+ a_out->a_data + bss_size > p->p_rlimit[RLIMIT_DATA].rlim_cur) {
error = ENOMEM;
goto cleanup;
}
diff --git a/sys/i386/linux/linux_misc.c b/sys/i386/linux/linux_misc.c
index a0da336..d267130 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.32 1997/10/30 10:53:30 kato Exp $
+ * $Id: linux_misc.c,v 1.33 1997/11/06 19:28:58 phk Exp $
*/
#include <sys/param.h>
@@ -289,8 +289,8 @@ linux_uselib(struct proc *p, struct linux_uselib_args *args)
* XXX: this is not complete. it should check current usage PLUS
* the resources needed by this library.
*/
- if (a_out->a_text > MAXTSIZ || a_out->a_data + bss_size > MAXDSIZ ||
- a_out->a_data+bss_size > p->p_rlimit[RLIMIT_DATA].rlim_cur) {
+ if (a_out->a_text > MAXTSIZ ||
+ a_out->a_data + bss_size > p->p_rlimit[RLIMIT_DATA].rlim_cur) {
error = ENOMEM;
goto cleanup;
}
OpenPOWER on IntegriCloud