You need to do something like this to clear it:
while(openssl_error_string() !== false);
Some openssl functions will add errors to the list even if they succeed.
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
openssl_error_string — Retourne le message d'erreur OpenSSL
openssl_error_string() retourne la dernière erreur de la bibliothèque OpenSSL. Les messages d'erreurs sont placés en file d'attente, et la fonction openssl_error_string() doit être appelée plusieurs fois pour afficher toutes les erreurs. La dernière erreur sera la plus récente dans cette file.
Cette fonction ne contient aucun paramètre.
Retourne un message d'erreur, sous la forme d'une chaîne de caractères, ou false
s'il n'y a plus de message à afficher.
Exemple #1 Exemple avec openssl_error_string()
<?php
// Imaginons que vous avez appelé une fonction qui a émis une erreur
while ($msg = openssl_error_string())
echo $msg . "<br />\n";
?>
You need to do something like this to clear it:
while(openssl_error_string() !== false);
Some openssl functions will add errors to the list even if they succeed.
Note that there may be two (or more) lines for one error.
Best to clear it out and read it for each openssl call.
PS
There are no "threads" and if the other library doesn't have enough sense to read (and therefore clear) the queue (errr, dequeue) of messages before and after their openssl calls...
A) That's their problem
B) Look for a new library, because NOT doing that means they aren't writing their code properly.