From 54615ca871bcc6c7c418160fec50710c054897d6 Mon Sep 17 00:00:00 2001 From: Steph Fox Date: Mon, 10 Mar 2008 19:11:16 +0000 Subject: [PATCH] Fix for crash caused by unhappy c&p. @Greg: this still doesn't fix bug #13353... not sure why --- ext/phar/tar.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/phar/tar.h b/ext/phar/tar.h index c7ecde5bb1..6dc1fd3127 100644 --- a/ext/phar/tar.h +++ b/ext/phar/tar.h @@ -83,4 +83,8 @@ typedef struct _tar_header { /* {{{ */ } PHAR_TAR_PACK tar_header; /* }}} */ +#ifdef PHP_WIN32 +#pragma pack() #endif + +#endif /* __PHAR_TAR_H */ -- 2.50.1