]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/serial-dmm/protocol.c
usb: Skip add/remove of FD on destroyed source
[libsigrok.git] / src / hardware / serial-dmm / protocol.c
index 6128e493f66888bb97aab00e132095c441308c45..edf8382b35d64c778f7e4b8207aec112c3562e67 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <stdlib.h>
 #include <math.h>
 #include <string.h>
-#include <errno.h>
 #include <glib.h>
-#include "libsigrok.h"
+#include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 #include "protocol.h"
 
@@ -175,9 +175,9 @@ int receive_data(int fd, int revents, void *cb_data)
 
        if (revents == G_IO_IN) {
                /* Serial data arrived. */
-               info = malloc(dmm->info_size);
+               info = g_malloc(dmm->info_size);
                handle_new_data(sdi, info);
-               free(info);
+               g_free(info);
        } else {
                /* Timeout; send another packet request if DMM needs it. */
                if (dmm->packet_request && (req_packet(sdi) < 0))