-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Call library.dl.Lookup() directly in updateVersionedSymbols
The refcount is still 0 within the body of load(), making the check in LookupSymbol think that the library isn't loaded yet (when in fact it is) while calling updateVersionedSymbols(). This change replaces calls with library.LookupSymbol() within updateVersionedSymbols() to calls of library.dl.Lookup() directly to avoid the check against refcount. Signed-off-by: Kevin Klues <[email protected]>
- Loading branch information
Showing
1 changed file
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters