Merge pull request #216 from cmb69/cmb/path-not-found

[Windows] Provide meaningful error message for PATH_NOT_FOUND
diff --git a/lib/zip_source_file_win32.c b/lib/zip_source_file_win32.c
index d5b0553..6547fc2 100644
--- a/lib/zip_source_file_win32.c
+++ b/lib/zip_source_file_win32.c
@@ -156,6 +156,7 @@
     case ERROR_INVALID_PARAMETER:
         return EINVAL;
     case ERROR_FILE_NOT_FOUND:
+    case ERROR_PATH_NOT_FOUND:
         return ENOENT;
     case ERROR_INVALID_HANDLE:
         return EBADF;