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
43facbc8
Commit
43facbc8
authored
Nov 13, 2018
by
DanmeiChen
Browse files
fix: for recent xcode, compilation error[null passed to a callee that requires a non-null argument]
parent
84330c27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
tester/liblinphone_tester_ios.m
tester/liblinphone_tester_ios.m
+1
-1
No files found.
tester/liblinphone_tester_ios.m
View file @
43facbc8
...
...
@@ -58,7 +58,7 @@ int main(int argc, char * argv[]) {
g_argv
=
argv
;
pthread_create
(
&
main_thread
,
NULL
,
_apple_main
,
NULL
);
NSAutoreleasePool
*
pool
=
[[
NSAutoreleasePool
alloc
]
init
];
int
value
=
UIApplicationMain
(
0
,
nil
,
nil
,
nil
);
int
value
=
UIApplicationMain
(
argc
,
argv
,
nil
,
nil
);
[
pool
release
];
return
value
;
pthread_join
(
main_thread
,
NULL
);
...
...
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