Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
b2df3b49
Commit
b2df3b49
authored
Jan 04, 2017
by
Ghislain MARY
Browse files
Compilation fixes.
parent
bf849dd3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
coreapi/Makefile.am
coreapi/Makefile.am
+1
-1
coreapi/message_storage.c
coreapi/message_storage.c
+2
-2
No files found.
coreapi/Makefile.am
View file @
b2df3b49
...
...
@@ -47,7 +47,7 @@ liblinphone_la_SOURCES=\
event.c
\
friend.c
\
friendlist.c
\
im_notif
y
_policy.c
\
im_notif_policy.c
\
info.c
\
ldapprovider.c
\
linphonecall.c
\
...
...
coreapi/message_storage.c
View file @
b2df3b49
...
...
@@ -419,7 +419,7 @@ static int linphone_chat_room_get_messages_count(LinphoneChatRoom *cr, bool_t un
int
numrows
=
0
;
char
*
peer
;
char
*
buf
;
char
*
option
;
char
*
option
=
NULL
;
sqlite3_stmt
*
selectStatement
;
int
returnValue
;
...
...
@@ -447,7 +447,7 @@ static int linphone_chat_room_get_messages_count(LinphoneChatRoom *cr, bool_t un
* because it has been tested above */
if
(
unread_only
)
{
cr
->
unread_count
=
numrows
;
bctbx_free
(
option
);
if
(
option
)
bctbx_free
(
option
);
}
return
numrows
;
...
...
Write
Preview
Markdown
is supported
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