php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #56191 Possible race condition in apc_sma_malloc() ?
Submitted: 2004-09-15 11:23 UTC Modified: 2004-09-16 00:52 UTC
From: swen dot thuemmler at telefonica dot de Assigned: rasmus (profile)
Status: Closed Package: APC (PECL)
PHP Version: Irrelevant OS: Solaris 2.8
Private report: No CVE-ID: None
View Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
If you reported this bug, you can edit this bug over here.
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: swen dot thuemmler at telefonica dot de
New email:
PHP Version: OS:

 

 [2004-09-15 11:23 UTC] swen dot thuemmler at telefonica dot de
Description:
------------
I'm not sure, but shouldnt the UNLOCK come after the assignment?

[...]
        if (off != -1) {
            void* p = (void *)(((char *)(sma_shmaddrs[i])) + off);
--->            UNLOCK(sma_lock);
--->            sma_lastseg = i;
            return p;
        }
[...]


--Swen



Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-09-16 00:52 UTC] rasmus@php.net
I suppose there could be a race in a multithreaded environment.  I have flipped those around.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue Jul 01 00:01:36 2025 UTC