Skip to content

Commit

Permalink
adjust memory requirement to lower maximum needed
Browse files Browse the repository at this point in the history
  • Loading branch information
u-an-i committed Oct 22, 2023
1 parent 4a989d5 commit 39a2fa8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Globe.c
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ void onImageLoading(HINTERNET hInternet, DWORD_PTR dwContext, DWORD dwInternetSt
if (counts.count == 0) {
allImagesRequestedPresent = 1;
}
char* cacheFilePath = malloc(cachePathLength + 25 + 1);
char* cacheFilePath = malloc(cachePathLength + 24 + 1);
if (cacheFilePath != NULL) {
char* idStartInCachePath = cacheFilePath + cachePathLength;
memcpy(cacheFilePath, cachePath, cachePathLength);
Expand Down
Binary file modified distributables/Globe.exe
Binary file not shown.

0 comments on commit 39a2fa8

Please sign in to comment.