Fix dangling reference warning on assign object property
This doesn't change the behavior, it just silences this compiler warning
when using FMDB in a project that has the
-Wobjc-property-assign-on-object-type warning flag.
https://clang.llvm.org/docs/AutomaticReferenceCounting.html#property-declarations
The alternative would have been to make this a weak property, but this
would have been a behavior change, and after reading the discussion
https://github.com/ccgus/fmdb/issues/522, I gather that this is
something that shouldn't be done in FMDB without bumping the major
version number.