From dc4984194b2b140442b6d7f752614b2f5dfc6575 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Wed, 20 Jan 2016 10:47:45 +0100 Subject: [PATCH 1/1] more argument checking --- src/bindings/java/org/simgrid/msg/Process.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bindings/java/org/simgrid/msg/Process.java b/src/bindings/java/org/simgrid/msg/Process.java index 5e53e74f10..502348caa9 100644 --- a/src/bindings/java/org/simgrid/msg/Process.java +++ b/src/bindings/java/org/simgrid/msg/Process.java @@ -146,6 +146,8 @@ public abstract class Process implements Runnable { public Process(Host host, String name, String[]args) { this(); this.host = host; + if (host == null) + throw new NullPointerException("Process name cannot be NULL"); if (name == null) throw new NullPointerException("Process name cannot be NULL"); this.name = name; @@ -168,6 +170,8 @@ public abstract class Process implements Runnable { public Process(Host host, String name, String[]args, double startTime, double killTime) { this(); this.host = host; + if (host == null) + throw new NullPointerException("Process name cannot be NULL"); if (name == null) throw new NullPointerException("Process name cannot be NULL"); this.name = name; -- 2.20.1