Changeset 90a45b8 for storage.c


Ignore:
Timestamp:
2016-12-26T22:38:32Z (7 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
d57484d
Parents:
26eed8a
git-author:
dequis <dx@…> (26-12-16 02:17:28)
git-committer:
dequis <dx@…> (26-12-16 22:38:32)
Message:

Fix some clang static analyzer warnings

Nothing interesting.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • storage.c

    r26eed8a r90a45b8  
    7474
    7575        storage = storage_init_single(primary);
    76         if (storage == NULL && storage->save == NULL) {
     76        if (storage == NULL || storage->save == NULL) {
    7777                return NULL;
    7878        }
Note: See TracChangeset for help on using the changeset viewer.