summaryrefslogtreecommitdiffstats
path: root/src/ipsw.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipsw.c')
-rw-r--r--src/ipsw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipsw.c b/src/ipsw.c
index d1d858b..2920bf2 100644
--- a/src/ipsw.c
+++ b/src/ipsw.c
@@ -61,9 +61,9 @@ static char* build_path(const char* path, const char* file)
if (!fullpath) {
return NULL;
}
- strncpy(fullpath, path, plen);
+ memcpy(fullpath, path, plen);
fullpath[plen] = '/';
- strncpy(fullpath+plen+1, file, flen);
+ memcpy(fullpath+plen+1, file, flen);
fullpath[plen+1+flen] = '\0';
return fullpath;
}