All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bluez-users] sdptool
@ 2005-05-04 16:05 Pedro Monjo Florit
  2005-05-04 17:03 ` Stephen Crane
  0 siblings, 1 reply; 2+ messages in thread
From: Pedro Monjo Florit @ 2005-05-04 16:05 UTC (permalink / raw)
  To: bluez-users

Hi!

I am following the code of sdptool.c and I have a question. I am 
comparing add_sp() and add_opush() and I have found something that 
puzzles me. The first part of the code is almost the same, but there are 
some sdp_list_free() calls in add_opush() that are present in add_sp(). 
For example:

static int add_sp(sdp_session_t *session, svc_info_t *si)
{
    /* ... */
    sdp_uuid16_create(&sp_uuid, SERIAL_PORT_SVCLASS_ID);
    svclass_id = sdp_list_append(0, &sp_uuid);
    sdp_set_service_classes(&record, svclass_id);
    sdp_list_free(svclass_id, 0);
    /* ... */
}

static int add_opush(sdp_session_t *session, svc_info_t *si)
{
    /* ... */
    sdp_uuid16_create(&opush_uuid, OBEX_OBJPUSH_SVCLASS_ID);
    svclass_id = sdp_list_append(0, &opush_uuid);
    sdp_set_service_classes(&record, svclass_id);
    /* ... */
}

Is this correct? Shouldn't there be a call to sdp_list_free(svclass_id, 
0) in add_opush() too? As I understand it, this means that add_opush() 
has a memory leak, isn't it? I have found at least three missing calls 
to sdp_list_free() in add_opush().

Regards,

Pedro Monjo


-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Bluez-users] sdptool
  2005-05-04 16:05 [Bluez-users] sdptool Pedro Monjo Florit
@ 2005-05-04 17:03 ` Stephen Crane
  0 siblings, 0 replies; 2+ messages in thread
From: Stephen Crane @ 2005-05-04 17:03 UTC (permalink / raw)
  To: bluez-users

Hi Pedro,
You could run valgrind on the different runs of sdptool to verify that
there is a leak here. Send in a patch!

Cheers,
Steve

On Wed, 2005-05-04 at 18:05 +0200, Pedro Monjo Florit wrote:
> Hi!
> 
> I am following the code of sdptool.c and I have a question. I am 
> comparing add_sp() and add_opush() and I have found something that 
> puzzles me. The first part of the code is almost the same, but there are 
> some sdp_list_free() calls in add_opush() that are present in add_sp(). 
> For example:
> 
> static int add_sp(sdp_session_t *session, svc_info_t *si)
> {
>     /* ... */
>     sdp_uuid16_create(&sp_uuid, SERIAL_PORT_SVCLASS_ID);
>     svclass_id = sdp_list_append(0, &sp_uuid);
>     sdp_set_service_classes(&record, svclass_id);
>     sdp_list_free(svclass_id, 0);
>     /* ... */
> }
> 
> static int add_opush(sdp_session_t *session, svc_info_t *si)
> {
>     /* ... */
>     sdp_uuid16_create(&opush_uuid, OBEX_OBJPUSH_SVCLASS_ID);
>     svclass_id = sdp_list_append(0, &opush_uuid);
>     sdp_set_service_classes(&record, svclass_id);
>     /* ... */
> }
> 
> Is this correct? Shouldn't there be a call to sdp_list_free(svclass_id, 
> 0) in add_opush() too? As I understand it, this means that add_opush() 
> has a memory leak, isn't it? I have found at least three missing calls 
> to sdp_list_free() in add_opush().
> 
> Regards,
> 
> Pedro Monjo
> 
> 
> -------------------------------------------------------
> This SF.Net email is sponsored by: NEC IT Guy Games.
> Get your fingers limbered up and give it your best shot. 4 great events, 4
> opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
> win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
> _______________________________________________
> Bluez-users mailing list
> Bluez-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bluez-users
-- 
Stephen Crane, Rococo Software Ltd. http://www.rococosoft.com
steve.crane@rococosoft.com +353-1-6601315 (ext 209)



-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-05-04 17:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-04 16:05 [Bluez-users] sdptool Pedro Monjo Florit
2005-05-04 17:03 ` Stephen Crane

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.