@krono commented on this pull request.


In platforms/unix/plugins/SqueakSSL/sqUnixOpenSSL.c:

>  			if ((sAN->type == matchType) &&
 			    sqVerifySAN(ssl, sAN, serverName, serverNameLength, matchType)) {
 				matchFound = MATCH_FOUND;
 				break;
 			}
 		}
-		sk_GENERAL_NAME_pop_free(sANs, GENERAL_NAME_free);
+		sqo_sk_GENERAL_NAME_pop_free(sANs, (void(*)(void*))sqo_sk_free);

Because some expansion is taking place here that cannot be easily emulate. However, all ..._free in the stack sense ultimately end up being sqo_sk_free. Qt does it similarly.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.