Move assignment after declarations

Bug: 447089
This commit is contained in:
Ian Craggs 2014-10-14 15:40:22 +01:00
parent b751576939
commit 265ea5221e
1 changed files with 1 additions and 1 deletions

View File

@ -2712,12 +2712,12 @@ int MQTTAsync_getPendingTokens(MQTTAsync handle, MQTTAsync_token **tokens)
{
int rc = MQTTASYNC_SUCCESS;
MQTTAsyncs* m = handle;
*tokens = NULL;
ListElement* current = NULL;
int count = 0;
FUNC_ENTRY;
MQTTAsync_lock_mutex(mqttasync_mutex);
*tokens = NULL;
if (m == NULL)
{