[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: lt_dlopenadvise ignores advice
From: |
Anton Ertl |
Subject: |
Re: lt_dlopenadvise ignores advice |
Date: |
Fri, 18 Apr 2008 18:03:00 +0200 (CEST) |
Anton Ertl wrote:
> The program below is a variation of the my_dlopenext example from the
> manual. Calling it with the correct extension works, but calling it
> without extension does not:
I then looked at the source for lt_dlopenext, and found the bug in my
program (sorry for the bug report):
> handle = lt_dlopenadvise (filename, &advise);
When I replace that with
handle = lt_dlopenadvise (filename, advise);
it works.
Note that the example in the manual contains the "&". So this report
turns out to be the result of a documentation bug.
- anton