Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
fix NPE from changes in e4358b82171
Dieser Commit ist enthalten in:
Ursprung
6b072ee589
Commit
b4192fd8e6
24
patches/api/0346-fix-NPE-from-changes-in-e4358b82171.patch
Normale Datei
24
patches/api/0346-fix-NPE-from-changes-in-e4358b82171.patch
Normale Datei
@ -0,0 +1,24 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Gabriel Wolf <gabrielpatrikurban@gmail.com>
|
||||
Date: Sun, 5 Dec 2021 14:36:05 +0000
|
||||
Subject: [PATCH] fix NPE from changes in e4358b82171
|
||||
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/configuration/MemorySection.java b/src/main/java/org/bukkit/configuration/MemorySection.java
|
||||
index 09f1debef5fad469a05a0d97b740a7310890fd64..9949fdd139709b42f8e3321b155c6980b177c2a4 100644
|
||||
--- a/src/main/java/org/bukkit/configuration/MemorySection.java
|
||||
+++ b/src/main/java/org/bukkit/configuration/MemorySection.java
|
||||
@@ -251,7 +251,12 @@ public class MemorySection implements ConfigurationSection {
|
||||
int i1 = -1, i2;
|
||||
ConfigurationSection section = this;
|
||||
while ((i1 = path.indexOf(separator, i2 = i1 + 1)) != -1) {
|
||||
- if (section == null || !section.contains(path.substring(i2, i1), true)) {
|
||||
+ final String currentPath = path.substring(i2, i1);
|
||||
+ if (!section.contains(currentPath, true)) {
|
||||
+ return def;
|
||||
+ }
|
||||
+ section = section.getConfigurationSection(currentPath);
|
||||
+ if(section == null) {
|
||||
return def;
|
||||
}
|
||||
section = section.getConfigurationSection(path.substring(i2, i1));
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren