@@ -864,9 +864,7 @@ static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, bool persistent)
864
864
}
865
865
if (!connection -> info -> lock .fp ) {
866
866
/* stream operation already wrote an error message */
867
- efree (resource_key );
868
- zval_ptr_dtor (return_value );
869
- RETURN_FALSE ;
867
+ goto fail ;
870
868
}
871
869
if (!error && !php_stream_supports_lock (connection -> info -> lock .fp )) {
872
870
error = "Stream does not support locking" ;
@@ -885,19 +883,15 @@ static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, bool persistent)
885
883
}
886
884
if (!connection -> info -> fp ) {
887
885
/* stream operation already wrote an error message */
888
- efree (resource_key );
889
- zval_ptr_dtor (return_value );
890
- RETURN_FALSE ;
886
+ goto fail ;
891
887
}
892
888
if (hptr -> flags & (DBA_NO_APPEND |DBA_CAST_AS_FD )) {
893
889
/* Needed because some systems do not allow to write to the original
894
890
* file contents with O_APPEND being set.
895
891
*/
896
892
if (SUCCESS != php_stream_cast (connection -> info -> fp , PHP_STREAM_AS_FD , (void * )& connection -> info -> fd , 1 )) {
897
893
php_error_docref (NULL , E_WARNING , "Could not cast stream" );
898
- efree (resource_key );
899
- zval_ptr_dtor (return_value );
900
- RETURN_FALSE ;
894
+ goto fail ;
901
895
#ifdef F_SETFL
902
896
} else if (modenr == DBA_CREAT ) {
903
897
int flags = fcntl (connection -> info -> fd , F_GETFL );
@@ -931,9 +925,7 @@ static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, bool persistent)
931
925
php_error_docref (NULL , E_WARNING , "Driver initialization failed for handler: %s" , hptr -> name );
932
926
}
933
927
}
934
- efree (resource_key );
935
- zval_ptr_dtor (return_value );
936
- RETURN_FALSE ;
928
+ goto fail ;
937
929
}
938
930
939
931
connection -> info -> hnd = hptr ;
@@ -942,13 +934,22 @@ static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, bool persistent)
942
934
if (zend_register_persistent_resource (resource_key , resource_key_len , connection -> info , le_pdb ) == NULL ) {
943
935
php_error_docref (NULL , E_WARNING , "Could not register persistent resource" );
944
936
efree (resource_key );
937
+ dba_close_connection (connection );
945
938
zval_ptr_dtor (return_value );
946
939
RETURN_FALSE ;
947
940
}
948
941
}
949
942
950
943
zend_hash_add_new (& DBA_G (connections ), connection -> hash , return_value );
951
944
efree (resource_key );
945
+ return ;
946
+ fail :
947
+ efree (resource_key );
948
+ zend_string_release_ex (connection -> hash , persistent );
949
+ dba_close_info (connection -> info );
950
+ connection -> info = NULL ;
951
+ zval_ptr_dtor (return_value );
952
+ RETURN_FALSE ;
952
953
}
953
954
/* }}} */
954
955
0 commit comments