json data decoding in swift using codable causes memory leak

let data = try JSONDecoder().decode([User].self, from: jsonData)
On analysing the memory leaks with instrument tool, this particular code always shows memory leak.
Any help to resolve this issue.

Note: User model is nested struct
json data decoding in swift using codable causes memory leak
 
 
Q