Skip to content
Advertisement

Casting problems with passing a struct by reference instead of a pointer to a buffer

I get casting errors when passing a struct by reference. Passing a pointer to a buffer works fine. The function getstuff() is actually libusb_claim_interface() with irrelevant parts removed. I am trying to get a chunk of data back from a USB device plugged into a Linux machine.

The data comes in according to this struct:

JavaScript

However, the code I was given to work with passes a buffer of unsigned chars. The buffer then needs to set each individual struct member.

For instance:

JavaScript

Rather than doing that, I want to actually define a struct (above) and pass a reference to that and then access the members sensibly, like this:

JavaScript

But that doesn’t work. First I get this when compiling:

JavaScript

Then, this (which is thrown out when libusb.h is parsed):

JavaScript

When I run the program, the device seems to send back 21906 bytes instead of the expected 44. If I cast fruits to (unsigned char *), the program compiles without complaint, but then I get back anywhere from 21900 to 22060 bytes. I could “solve” this by simply passing an array of unsigned chars like in the original code, but then doing this to copy the pointer to mystruct_t *fruits:

JavaScript

But I’d really like to know what’s going on and why I’m having so much trouble casting the struct.

Advertisement

Answer

getstuff((unsigned char) fruits, sizeof(mystruct_t)); => getstuff((unsigned char *) fruits, sizeof(*fruits));

fruits = (mystruct_t *) buffer; this one is called “pointer punning” and is unsafe, not portable and in general UB

another problem is that you do not allocate the memory for the fruits structure.

You may:

JavaScript

or

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement