Dereference after null check
Either the check against null is unnecessary, or there may be a null pointer dereference. Pointer is checked against null but then dereferenced anyway
/ext/storage_sources/local_store/local_store.c:623: FORWARD_NULL 118042 Comparing "directory" to null implies that "directory" might be null.
/ext/storage_sources/local_store/local_store.c:649: FORWARD_NULL 118042 Passing null pointer "directory" to "strncmp", which dereferences it.