Small fix.
This commit is contained in:
parent
a8949ca07e
commit
5ee700c9b9
@ -109,7 +109,7 @@ bool mpw_marshal_info_free(
|
|||||||
bool mpw_marshal_free(
|
bool mpw_marshal_free(
|
||||||
MPMarshalledUser **user) {
|
MPMarshalledUser **user) {
|
||||||
|
|
||||||
if (!user)
|
if (!user || !*user)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
bool success = true;
|
bool success = true;
|
||||||
|
@ -544,7 +544,6 @@ int main(int argc, char *const argv[]) {
|
|||||||
case MPKeyPurposeAuthentication: {
|
case MPKeyPurposeAuthentication: {
|
||||||
mpw_free_string( &site->content );
|
mpw_free_string( &site->content );
|
||||||
site->content = strdup( resultState );
|
site->content = strdup( resultState );
|
||||||
dbg( "site->content: %p", (void *)site->content );
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case MPKeyPurposeIdentification: {
|
case MPKeyPurposeIdentification: {
|
||||||
|
Loading…
Reference in New Issue
Block a user