]> git.sur5r.net Git - openldap/commitdiff
Plug memory leak
authorLuke Howard <lukeh@openldap.org>
Fri, 24 Jan 2003 06:57:12 +0000 (06:57 +0000)
committerLuke Howard <lukeh@openldap.org>
Fri, 24 Jan 2003 06:57:12 +0000 (06:57 +0000)
servers/slapd/slapi/slapi_ops.c

index 17b566b6f37d03c19e7c8ca91db69e19b35c2b37..fcfa6fe5bb642dec2f8e28a4a2a936c24593d46e 100644 (file)
@@ -558,6 +558,7 @@ cleanup:
        if (ndn.bv_val) slapi_ch_free( (void **)&ndn.bv_val );\r
 \r
        if ( pConn != NULL ) {\r
+               if ( pConn->c_sb != NULL ) ber_sockbuf_free( pConn->c_sb );\r
                if ( pConn->c_dn.bv_val ) slapi_ch_free( (void **)&pConn->c_dn.bv_val );\r
                if ( op->o_dn.bv_val ) slapi_ch_free( (void **)&op->o_dn.bv_val );\r
                if ( op ) slapi_ch_free( (void **)&op );\r
@@ -641,6 +642,7 @@ cleanup:
        }\r
 \r
        if ( pConn != NULL ) {\r
+               if ( pConn->c_sb != NULL ) ber_sockbuf_free( pConn->c_sb );\r
                if ( pConn->c_dn.bv_val ) slapi_ch_free( (void **)&pConn->c_dn.bv_val );\r
                if ( op ) {\r
                        if ( op->o_ndn.bv_val ) {\r
@@ -856,6 +858,7 @@ cleanup:
        if ( nnewrdn.bv_val ) ch_free( newrdn.bv_val );\r
 \r
        if ( pConn != NULL ) {\r
+               if ( pConn->c_sb != NULL ) ber_sockbuf_free( pConn->c_sb );\r
                if ( pConn->c_dn.bv_val ) slapi_ch_free( (void **)&pConn->c_dn.bv_val );\r
                if ( op ) {\r
                        if ( op->o_dn.bv_val ) slapi_ch_free( (void **)&op->o_dn.bv_val );\r
@@ -1069,6 +1072,7 @@ cleanup:
        if ( modlist != NULL ) slap_mods_free( modlist );\r
 \r
        if ( pConn != NULL ) {\r
+               if ( pConn->c_sb != NULL ) ber_sockbuf_free( pConn->c_sb );\r
                if ( pConn->c_dn.bv_val ) slapi_ch_free( (void **)&pConn->c_dn.bv_val );\r
                if ( op ) {\r
                        if ( op->o_dn.bv_val ) slapi_ch_free( (void **)&op->o_dn.bv_val );\r
@@ -1247,6 +1251,7 @@ cleanup:
        if ( an != NULL ) free( an );\r
 \r
        if ( c != NULL ) {\r
+               if ( c->c_sb != NULL ) ber_sockbuf_free( c->c_sb );\r
                if ( c->c_dn.bv_val ) slapi_ch_free( (void **)&c->c_dn.bv_val );\r
                if ( op ) {\r
                        if ( op->o_ndn.bv_val ) slapi_ch_free( (void **)&op->o_ndn.bv_val );\r