Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
BroadcastCommunity.qnx.com will be offline from May 31 6:00pm until June 2 12:00AM for upcoming system upgrades. For more information please go to https://community.qnx.com/sf/discussion/do/listPosts/projects.bazaar/discussion.bazaar.topc28418
Forum Topic - Code analysis bug: (1 Item)
   
Code analysis bug  
The "Field cannot be resolved" checker does not like this code:

   iov_t send_mx [1];
   SETIOV (send_mx, 0, 0);

I have replaced the second and third argument with zeroes for this example.  The checker does not like "send_mx" as 
written.  It is happy if I change it to "send_mx + 0" or "&send_mx [0]".  As written, it complains with this error 
description:

Field 'SETIOV (send_mx, 0, 0)' could not be resolved

I believe this is a bug because send_mx represents the address of the array.