Browse Source

Update rmodels.c

Ray 3 years ago
parent
commit
9ac5a96408
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/rmodels.c

+ 1 - 1
src/rmodels.c

@@ -4555,7 +4555,7 @@ static unsigned char *DecodeBase64(char *data, int *outputLength)
     {
         if (data[4*i + 3] == '=')
         {
-            if (data[4*i + 2] == '=') size += 1;
+            if (data[4*i + 2] == '=') outLength += 1;
             else outLength += 2;
         }
         else outLength += 3;