X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fwin32_apply.c;h=c91315cf2f162695d24d9703dc03f8b40c6de95f;hb=f2f293a1759c81e7bd5deb904c3909368f3feaa5;hp=31c37452580846bbf82328036049aa754721660d;hpb=5d162a88050e113e6630c844325605f04013d834;p=wimlib diff --git a/src/win32_apply.c b/src/win32_apply.c index 31c37452..c91315cf 100644 --- a/src/win32_apply.c +++ b/src/win32_apply.c @@ -23,13 +23,22 @@ #ifdef __WIN32__ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include /* for SetSecurityInfo() */ -#include "win32_common.h" -#include "wimlib_internal.h" -#include "dentry.h" -#include "lookup_table.h" -#include "endianness.h" +#include "wimlib/win32_common.h" + +#include "wimlib/apply.h" +#include "wimlib/dentry.h" +#include "wimlib/endianness.h" +#include "wimlib/error.h" +#include "wimlib/lookup_table.h" +#include "wimlib/metadata.h" +#include "wimlib/reparse.h" +#include "wimlib/security.h" #define MAX_CREATE_HARD_LINK_WARNINGS 5 #define MAX_CREATE_SOFT_LINK_WARNINGS 5 @@ -144,10 +153,11 @@ win32_set_reparse_data(HANDLE h, int ret; u8 rpbuf[REPARSE_POINT_MAX_SIZE]; DWORD bytesReturned; + u16 rpbuflen; DEBUG("Setting reparse data on \"%ls\"", path); - ret = wim_inode_get_reparse_data(inode, rpbuf); + ret = wim_inode_get_reparse_data(inode, rpbuf, &rpbuflen); if (ret) return ret; @@ -185,7 +195,7 @@ win32_set_reparse_data(HANDLE h, * "Not used with this operation; set to NULL." */ if (!DeviceIoControl(h, FSCTL_SET_REPARSE_POINT, rpbuf, - 8 + le16_to_cpu(*(u16*)(rpbuf + 4)), + rpbuflen, NULL, 0, &bytesReturned /* lpBytesReturned */, NULL /* lpOverlapped */))