Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] SharedLibraryImpl::loadImpl uses an incorrect format specifier #4164

Closed
Smurf-IV opened this issue Sep 28, 2023 · 4 comments
Closed

[Bug] SharedLibraryImpl::loadImpl uses an incorrect format specifier #4164

Smurf-IV opened this issue Sep 28, 2023 · 4 comments

Comments

@Smurf-IV
Copy link

According to https://www.tutorialspoint.com/c_standard_library/c_function_sprintf.htm

the length should be "BEFORE" the specifier

in the above function (In the win32 version) the following is formatted

Poco::format(err, "Error %ul while loading [%s]: [%s]", errn, path, trimmedError);

and it should be

Poco::format(err, "Error %lu while loading [%s]: [%s]", errn, path, trimmedError);

@obiltschnig
Copy link
Member

Already fixed in devel branch.

@Smurf-IV
Copy link
Author

@obiltschnig You have added the 1.11.8 milestone.
I found this in 1.12.4
What is the difference in this versioning structure ?

@obiltschnig
Copy link
Member

We currently maintain 1.11.x (next release 1.11.8) and 1.12.x (next release 1.12.4) release branches, in addition to devel, which will become 1.13.

@Smurf-IV
Copy link
Author

Smurf-IV commented Oct 1, 2023

Thanks,
Can the above be elaborated on the project page, and to also state the differences between the versions please ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants