From ea41a90eae120f3c1f974e0c5604d902b9a511ab Mon Sep 17 00:00:00 2001
From: jrandom <jrandom>
Date: Sun, 21 Aug 2005 18:37:57 +0000
Subject: [PATCH] sanity checking

---
 core/java/src/net/i2p/data/Base64.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/java/src/net/i2p/data/Base64.java b/core/java/src/net/i2p/data/Base64.java
index fa915ef990..b7da7ed518 100644
--- a/core/java/src/net/i2p/data/Base64.java
+++ b/core/java/src/net/i2p/data/Base64.java
@@ -142,7 +142,7 @@ public class Base64 {
     }
 
     public static void main(String[] args) {
-        test();
+        //test();
         if (args.length == 0) {
             help();
             return;
@@ -399,6 +399,7 @@ public class Base64 {
      * replacing / with ~, and + with -
      */
     private static byte[] safeDecode(String source, boolean useStandardAlphabet) {
+        if (source == null) return null;
         String toDecode = null;
         if (useStandardAlphabet) {
             toDecode = source;
-- 
GitLab