Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
/*.dll
/bin
/test
/test/*
/test/*
2 changes: 1 addition & 1 deletion filepath.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void os_strcpy(oschar_t *dst, const char *src) {
const UTF8 *sourceStart = (const UTF8 *)src;
UTF16 *targetStart = (UTF16 *)dst;
uint32_t src_len, dst_len;
src_len = strlen(src);
src_len = (uint32_t)strlen(src);
dst_len = src_len + 1;
const UTF8 *sourceEnd = (const UTF8 *)(src + src_len);
UTF16 *targetEnd = (UTF16 *)(dst + dst_len);
Expand Down
5 changes: 5 additions & 0 deletions hactool-vs2019/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.vs
out
Win32
x64
*.user
Loading