소스 검색

Update rmodels.c

Ray 3 년 전
부모
커밋
9ac5a96408
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;