gnokii-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-45


From: Daniele Forsi
Subject: [SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-453-g6b3d04b
Date: Mon, 15 Apr 2013 10:55:02 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "libgnokii and core programs".

The branch, master has been updated
       via  6b3d04b15c2c128312a7f22f6ff6a222031c6b98 (commit)
      from  4c3c2958f659421b3d85b46380bff1db4690d843 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/gnokii.git/commit/?id=6b3d04b15c2c128312a7f22f6ff6a222031c6b98


commit 6b3d04b15c2c128312a7f22f6ff6a222031c6b98
Author: Daniele Forsi <address@hidden>
Date:   Mon Apr 15 11:07:34 2013 +0200

    Fix: Value stored to 'error' is never read
    
    Error found with scan-build.

diff --git a/common/phones/nk7110.c b/common/phones/nk7110.c
index 0e53165..b49d6c6 100644
--- a/common/phones/nk7110.c
+++ b/common/phones/nk7110.c
@@ -1365,6 +1365,7 @@ static gn_error NK7110_GetSMSFolderStatus(gn_data *data, 
struct gn_statemachine
                req[4] = 0xf8; /* unread messages from INBOX */
                if (sm_message_send(7, NK7110_MSG_FOLDER, req, state)) return 
GN_ERR_NOTREADY;
                error = sm_block(NK7110_MSG_FOLDER, data, state);
+               if (error != GN_ERR_NONE) return error;
 
                for (i = 0; i < read.number; i++) {
                        data->sms_folder->locations[data->sms_folder->number] = 
read.locations[i];

-----------------------------------------------------------------------

Summary of changes:
 common/phones/nk7110.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
libgnokii and core programs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]