Paper/CraftBukkit-Patches/0116-Cap-Objective-Score-Length.patch

23 lines
1.0 KiB
Diff
Raw Normal View History

2015-06-01 11:22:52 +02:00
From d413ec0d01767b3a079b36776733faedf1a0d7fa Mon Sep 17 00:00:00 2001
From: hauno <imhauno@gmail.com>
Date: Tue, 6 May 2014 18:01:37 -0700
Subject: [PATCH] Cap Objective Score Length
Adds a check for Score arguments that would crash the client
diff --git a/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftObjective.java b/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftObjective.java
2015-02-26 11:40:16 +01:00
index 239ceca..5bd8cf9 100644
--- a/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftObjective.java
+++ b/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftObjective.java
2015-01-17 00:12:14 +01:00
@@ -93,6 +93,7 @@ final class CraftObjective extends CraftScoreboardComponent implements Objective
public Score getScore(String entry) throws IllegalArgumentException, IllegalStateException {
Validate.notNull(entry, "Entry cannot be null");
+ if (entry.length() > 40) throw new IllegalArgumentException("Entry cannot be longer than 40 characters!"); // Spigot
CraftScoreboard scoreboard = checkState();
return new CraftScore(this, entry);
--
2015-05-09 22:23:26 +02:00
2.1.4