Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
07bcca1d
Commit
07bcca1d
authored
Apr 15, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/darwin: fix crash while accessing http content while no proxy is set
parent
18c00a38
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
32 deletions
+34
-32
src/darwin/netconf.c
src/darwin/netconf.c
+34
-32
No files found.
src/darwin/netconf.c
View file @
07bcca1d
...
...
@@ -46,43 +46,45 @@ char *vlc_getProxyUrl(const char *url)
CFNumberRef
cfn_httpProxyOn
=
(
CFNumberRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPEnable
);
int
i_httpProxyOn
;
CFNumberGetValue
(
cfn_httpProxyOn
,
kCFNumberIntType
,
&
i_httpProxyOn
);
CFRelease
(
cfn_httpProxyOn
);
if
(
cfn_httpProxyOn
)
{
int
i_httpProxyOn
;
CFNumberGetValue
(
cfn_httpProxyOn
,
kCFNumberIntType
,
&
i_httpProxyOn
);
CFRelease
(
cfn_httpProxyOn
);
if
(
i_httpProxyOn
==
1
)
// http proxy is on
{
CFStringRef
httpProxy
=
(
CFStringRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPProxy
);
if
(
i_httpProxyOn
==
1
)
// http proxy is on
{
CFStringRef
httpProxy
=
(
CFStringRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPProxy
);
if
(
httpProxy
)
{
CFNumberRef
cfn_httpProxyPort
=
(
CFNumberRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPPort
);
int
i_httpProxyPort
;
CFNumberGetValue
(
cfn_httpProxyPort
,
kCFNumberIntType
,
&
i_httpProxyPort
);
CFRelease
(
cfn_httpProxyPort
);
if
(
httpProxy
)
{
CFNumberRef
cfn_httpProxyPort
=
(
CFNumberRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPPort
);
int
i_httpProxyPort
;
CFNumberGetValue
(
cfn_httpProxyPort
,
kCFNumberIntType
,
&
i_httpProxyPort
);
CFRelease
(
cfn_httpProxyPort
);
CFMutableStringRef
outputURL
=
CFStringCreateMutableCopy
(
kCFAllocatorDefault
,
0
,
httpProxy
);
if
(
i_httpProxyPort
>
0
)
CFStringAppendFormat
(
outputURL
,
NULL
,
CFSTR
(
":%i"
),
i_httpProxyPort
);
CFMutableStringRef
outputURL
=
CFStringCreateMutableCopy
(
kCFAllocatorDefault
,
0
,
httpProxy
);
if
(
i_httpProxyPort
>
0
)
CFStringAppendFormat
(
outputURL
,
NULL
,
CFSTR
(
":%i"
),
i_httpProxyPort
);
CFStringGetCString
(
outputURL
,
proxy_url
,
sizeof
(
proxy_url
),
kCFStringEncodingASCII
);
CFRelease
(
outputURL
);
CFStringGetCString
(
outputURL
,
proxy_url
,
sizeof
(
proxy_url
),
kCFStringEncodingASCII
);
CFRelease
(
outputURL
);
}
CFRelease
(
httpProxy
);
}
CFRelease
(
httpProxy
);
}
CFRelease
(
proxies
);
}
...
...
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