You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
e test test_l1_tvSettings_positive_GetTVSupportedPictureModes incorrectly passed an array of pointers (tvPicModes) to GetTVSupportedPictureModes, which was not necessary as the function expects a single pointer to the data. The function GetTVSupportedPictureModes internally handles memory allocation for the picture modes, and passing a pointer rather than an array resolves this issue. The fix involved adjusting the parameter to correctly pass the pointer and align with the expected function behavior.
The text was updated successfully, but these errors were encountered:
e test test_l1_tvSettings_positive_GetTVSupportedPictureModes incorrectly passed an array of pointers (tvPicModes) to GetTVSupportedPictureModes, which was not necessary as the function expects a single pointer to the data. The function GetTVSupportedPictureModes internally handles memory allocation for the picture modes, and passing a pointer rather than an array resolves this issue. The fix involved adjusting the parameter to correctly pass the pointer and align with the expected function behavior.
The text was updated successfully, but these errors were encountered: