diff --git a/src/util/common.c b/src/util/common.c index 62f88c2..552aa3b 100644 --- a/src/util/common.c +++ b/src/util/common.c @@ -35,6 +35,9 @@ void copy_file(const char *pathSrc, const char *pathDest) { + if (g_str_equal(pathSrc, pathDest)) + return; + FILE *fileSrc, *fileDest; char buffer[100]; int nb;