diff options
author | Pablo Barciela <[email protected]> | 2019-03-28 21:40:41 +0100 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-04-05 11:53:16 +0200 |
commit | a27a915a138df43f4cde6a964f7ef9991996be6f (patch) | |
tree | 068d22bf0534be83cf3a6bb9064b46a8c0f954e1 /libcaja-private | |
parent | cdd9cd5056fd9281f6e5f83cab40e92c29479f0a (diff) | |
download | caja-a27a915a138df43f4cde6a964f7ef9991996be6f.tar.bz2 caja-a27a915a138df43f4cde6a964f7ef9991996be6f.tar.xz |
caja-file-operations: make sure 'error' isn't NULL
Fixes Clang static analyzer warnings:
caja-file-operations.c:2165:7: warning: Access to field 'code' results in a dereference of a null pointer (loaded from variable 'error')
if (error->code != G_IO_ERROR_FAILED_HANDLED) {
^~~~~~~~~~~
caja-file-operations.c:5448:14: warning: Access to field 'message' results in a dereference of a null pointer (loaded from variable 'error')
details = error->message;
^~~~~~~~~~~~~~
Diffstat (limited to 'libcaja-private')
-rw-r--r-- | libcaja-private/caja-file-operations.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcaja-private/caja-file-operations.c b/libcaja-private/caja-file-operations.c index 968cf5e6..6de6fdfe 100644 --- a/libcaja-private/caja-file-operations.c +++ b/libcaja-private/caja-file-operations.c @@ -2162,7 +2162,7 @@ unmount_mount_callback (GObject *source_object, } if (! unmounted) { - if (error->code != G_IO_ERROR_FAILED_HANDLED) { + if (error && error->code != G_IO_ERROR_FAILED_HANDLED) { if (data->eject) { primary = f (_("Unable to eject %V"), source_object); } else { @@ -5445,7 +5445,7 @@ link_file (CopyMoveJob *job, details = NULL; } else { secondary = f (_("There was an error creating the symlink in %F."), dest_dir); - details = error->message; + details = error ? error->message : NULL; } response = run_warning (common, |