Sophie

Sophie

distrib > Fedora > 13 > i386 > media > os > by-pkgid > 723099bbd243a93965600a62c1da4b0a > files > 90

samba-3.5.2-60.fc13.i686.rpm

#include <libsmbclient.h>

void create_and_destroy_context (void)
{
  SMBCCTX *ctx;
  ctx = smbc_new_context ();
  smbc_init_context (ctx);

  smbc_free_context (ctx, 1);
}

int main (int argc, char **argv)
{
  create_and_destroy_context ();
  create_and_destroy_context ();
  return 0;
}