You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Mladen Turk <ml...@mail.inet.hr> on 2001/08/14 21:50:56 UTC

[PATCH] WIN9X - Apache has caused an error in LIBAPR.DLL

I've send it couple of days ago, but still didn't found it yet on the CVS.


Well here is the patch again :


--- mpm_winnt.c.old	Sat Aug  4 09:20:14 2001
+++ mpm_winnt.c	Sat Aug 11 20:12:32 2001
@@ -1167,7 +1167,8 @@
 
     CloseHandle(allowed_globals.jobsemaphore);
     apr_lock_destroy(allowed_globals.jobmutex);
-    apr_lock_destroy(qlock);
+    if (osver.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS)
+        apr_lock_destroy(qlock);
 
     apr_pool_destroy(pchild);
     CloseHandle(exit_event);



MT.


Re: [PATCH] WIN9X - Apache has caused an error in LIBAPR.DLL

Posted by "William A. Rowe, Jr." <wr...@rowe-clan.net>.
Committed a few minutes before I read this :)

----- Original Message ----- 
From: "Mladen Turk" <ml...@mail.inet.hr>
To: "New-Httpd" <ne...@apache.org>
Sent: Tuesday, August 14, 2001 2:50 PM
Subject: [PATCH] WIN9X - Apache has caused an error in LIBAPR.DLL


> I've send it couple of days ago, but still didn't found it yet on the CVS.
> 
> 
> Well here is the patch again :
> 
> 
> --- mpm_winnt.c.old Sat Aug  4 09:20:14 2001
> +++ mpm_winnt.c Sat Aug 11 20:12:32 2001
> @@ -1167,7 +1167,8 @@
>  
>      CloseHandle(allowed_globals.jobsemaphore);
>      apr_lock_destroy(allowed_globals.jobmutex);
> -    apr_lock_destroy(qlock);
> +    if (osver.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS)
> +        apr_lock_destroy(qlock);
>  
>      apr_pool_destroy(pchild);
>      CloseHandle(exit_event);
> 
> 
> 
> MT.
> 
>