summaryrefslogtreecommitdiff
path: root/src/xine-engine/xine.c
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2005-08-29 15:28:16 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2005-08-29 15:28:16 +0000
commit0f8fd3b22893dd07db6506a1ba4d298e51a1c985 (patch)
tree291cf3594687cdaaa23f9527ba6d9f20f1a6283d /src/xine-engine/xine.c
parent7cb89d83b0d845270e583c2848b0eaaa5e053217 (diff)
downloadxine-lib-0f8fd3b22893dd07db6506a1ba4d298e51a1c985.tar.gz
xine-lib-0f8fd3b22893dd07db6506a1ba4d298e51a1c985.tar.bz2
*BUGFIX*
Windows ports updates: - finished M$VC port update - moved xine plugins back to normal location for Windows ports, added relative directories (used relative to ${prefix}), make sure it's thread-safe (but it's still hacky) - fixed ugly bug with loading plugins, when working drive was differrent from plugins directory directory - directory and subdirectory separator called as platform specific - fix crash with newer win32 pthread (missing mutex_init in vo plugin), yes! - small doc update CVS patchset: 7712 CVS date: 2005/08/29 15:28:16
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r--src/xine-engine/xine.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c
index c3f326bcd..c5ab40f8b 100644
--- a/src/xine-engine/xine.c
+++ b/src/xine-engine/xine.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine.c,v 1.315 2005/08/25 15:36:30 valtri Exp $
+ * $Id: xine.c,v 1.316 2005/08/29 15:28:17 valtri Exp $
*/
/*
@@ -1341,7 +1341,7 @@ void xine_exit (xine_t *this) {
#if defined(WIN32)
WSACleanup();
#endif
-
+
free (this);
}
@@ -1352,7 +1352,7 @@ xine_t *xine_new (void) {
#ifdef WIN32
WSADATA Data;
int i_err;
-#endif /* WIN32 */
+#endif
this = xine_xmalloc (sizeof (xine_t));
if (!this)