aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0654-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0654-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch')
-rw-r--r--patches/server/0654-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/patches/server/0654-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch b/patches/server/0654-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch
new file mode 100644
index 0000000000..be0eedab93
--- /dev/null
+++ b/patches/server/0654-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch
@@ -0,0 +1,18 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: u9g <[email protected]>
+Date: Mon, 3 Jan 2022 23:32:42 -0500
+Subject: [PATCH] Add missing IAE check for PersistentDataContainer#has
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/persistence/CraftPersistentDataContainer.java b/src/main/java/org/bukkit/craftbukkit/persistence/CraftPersistentDataContainer.java
+index 3001bb0e3d4af9b16645a0136093db594b89ab01..984e988a47aa55a3fd92198e379d0f92f511daef 100644
+--- a/src/main/java/org/bukkit/craftbukkit/persistence/CraftPersistentDataContainer.java
++++ b/src/main/java/org/bukkit/craftbukkit/persistence/CraftPersistentDataContainer.java
+@@ -57,6 +57,7 @@ public class CraftPersistentDataContainer implements PersistentDataContainer {
+
+ @Override
+ public boolean has(NamespacedKey key) {
++ Preconditions.checkArgument(key != null, "The provided key for the custom value was null"); // Paper
+ return this.customDataTags.get(key.toString()) != null;
+ }
+