Skip to content

Commit

Permalink
Checking err for nil after execTable (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
stascode authored and ahmetb committed Aug 17, 2016
1 parent ff26f00 commit b76e48c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions storage/table_entities.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ func (c *TableServiceClient) QueryTableEntities(tableName AzureTable, previousCo

resp, err := c.client.execTable("GET", uri, headers, nil)

if err != nil {
return nil, nil, err
}

contToken := extractContinuationTokenFromHeaders(resp.headers)

if err != nil {
Expand Down

0 comments on commit b76e48c

Please sign in to comment.