- Timestamp:
- 2012-01-27T23:16:15Z (13 years ago)
- Branches:
- master
- Children:
- 85341dd
- Parents:
- 441b9dd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/skype/skype.c
r441b9dd r7c2daf5f 410 410 sd->info_fullname); 411 411 g_free(sd->info_fullname); 412 sd->info_fullname = NULL; 412 413 } 413 414 if (sd->info_phonehome) { … … 416 417 sd->info_phonehome); 417 418 g_free(sd->info_phonehome); 419 sd->info_phonehome = NULL; 418 420 } 419 421 if (sd->info_phoneoffice) { … … 422 424 sd->info_phoneoffice); 423 425 g_free(sd->info_phoneoffice); 426 sd->info_phoneoffice = NULL; 424 427 } 425 428 if (sd->info_phonemobile) { … … 428 431 sd->info_phonemobile); 429 432 g_free(sd->info_phonemobile); 433 sd->info_phonemobile = NULL; 430 434 } 431 435 g_string_append_printf(st, "Personal Information\n"); … … 435 439 "Contacts: %s\n", sd->info_nrbuddies); 436 440 g_free(sd->info_nrbuddies); 441 sd->info_nrbuddies = NULL; 437 442 } 438 443 if (sd->info_tz) { … … 447 452 } 448 453 g_free(sd->info_tz); 454 sd->info_tz = NULL; 449 455 } 450 456 if (sd->info_seen) { … … 458 464 } 459 465 g_free(sd->info_seen); 466 sd->info_seen = NULL; 460 467 } 461 468 if (sd->info_birthday) { … … 477 484 } 478 485 g_free(sd->info_birthday); 486 sd->info_birthday = NULL; 479 487 } 480 488 if (sd->info_sex) { … … 487 495 } 488 496 g_free(sd->info_sex); 497 sd->info_sex = NULL; 489 498 } 490 499 if (sd->info_language) { … … 499 508 } 500 509 g_free(sd->info_language); 510 sd->info_language = NULL; 501 511 } 502 512 if (sd->info_country) { … … 511 521 } 512 522 g_free(sd->info_country); 523 sd->info_country = NULL; 513 524 } 514 525 if (sd->info_province) { … … 517 528 "Region: %s\n", sd->info_province); 518 529 g_free(sd->info_province); 530 sd->info_province = NULL; 519 531 } 520 532 if (sd->info_city) { … … 523 535 "City: %s\n", sd->info_city); 524 536 g_free(sd->info_city); 537 sd->info_city = NULL; 525 538 } 526 539 if (sd->info_homepage) { … … 529 542 "Homepage: %s\n", sd->info_homepage); 530 543 g_free(sd->info_homepage); 544 sd->info_homepage = NULL; 531 545 } 532 546 if (sd->info_about) { … … 535 549 sd->info_about); 536 550 g_free(sd->info_about); 551 sd->info_about = NULL; 537 552 } 538 553 imcb_log(ic, "%s", st->str);
Note: See TracChangeset
for help on using the changeset viewer.