Skip to content

Commit 3baad5f

Browse files
adriandolekevinAlbs
authored andcommitted
return NULL instead of false (#1703)
1 parent 1c03078 commit 3baad5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libmongoc/src/mongoc/mongoc-database.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ mongoc_database_create_collection (mongoc_database_t *database,
12611261
error)) {
12621262
// Error during fields lookup
12631263
bson_destroy (&encryptedFields);
1264-
return false;
1264+
return NULL;
12651265
}
12661266

12671267
if (!bson_empty (&encryptedFields)) {

0 commit comments

Comments
 (0)