Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
4298b708
Commit
4298b708
authored
Jun 09, 2010
by
Alexandre Savard
Browse files
[#3424] Shielded unused pointers in Accounts Local IP parameters
parent
72b31bb0
Changes
1
Hide whitespace changes
Inline
Side-by-side
sflphone-client-gnome/src/config/accountconfigdialog.c
View file @
4298b708
...
@@ -1365,7 +1365,7 @@ void show_account_window (account_t * a) {
...
@@ -1365,7 +1365,7 @@ void show_account_window (account_t * a) {
}
}
if
(
strcmp
(
proto
,
"SIP"
)
==
0
)
{
if
(
proto
&&
strcmp
(
proto
,
"SIP"
)
==
0
)
{
if
(
g_strcasecmp
(
currentAccount
->
accountID
,
IP2IP
)
!=
0
)
{
if
(
g_strcasecmp
(
currentAccount
->
accountID
,
IP2IP
)
!=
0
)
{
...
@@ -1457,7 +1457,7 @@ void show_account_window (account_t * a) {
...
@@ -1457,7 +1457,7 @@ void show_account_window (account_t * a) {
}
}
if
(
strcmp
(
currentProtocol
,
"SIP"
)
==
0
)
{
if
(
currentProtocol
&&
strcmp
(
currentProtocol
,
"SIP"
)
==
0
)
{
/* Set new credentials if any */
/* Set new credentials if any */
DEBUG
(
"Config: Setting credentials"
);
DEBUG
(
"Config: Setting credentials"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment