Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
520eaf2f
Commit
520eaf2f
authored
Dec 12, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
realrtsp: initialize *all* the array
parent
a69589d3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
modules/access/rtsp/real_sdpplin.c
modules/access/rtsp/real_sdpplin.c
+8
-8
No files found.
modules/access/rtsp/real_sdpplin.c
View file @
520eaf2f
...
...
@@ -36,18 +36,18 @@ static char *b64_decode(const char *in, char *out, int *size) {
int
i
,
k
;
unsigned
int
j
;
for
(
i
=
0
;
i
<
255
;
i
++
)
{
for
(
i
=
0
;
i
<
256
;
i
++
)
dtable
[
i
]
=
0x80
;
}
for
(
i
=
'A'
;
i
<=
'Z'
;
i
++
)
{
for
(
i
=
'A'
;
i
<=
'Z'
;
i
++
)
dtable
[
i
]
=
0
+
(
i
-
'A'
);
}
for
(
i
=
'a'
;
i
<=
'z'
;
i
++
)
{
for
(
i
=
'a'
;
i
<=
'z'
;
i
++
)
dtable
[
i
]
=
26
+
(
i
-
'a'
);
}
for
(
i
=
'0'
;
i
<=
'9'
;
i
++
)
{
for
(
i
=
'0'
;
i
<=
'9'
;
i
++
)
dtable
[
i
]
=
52
+
(
i
-
'0'
);
}
dtable
[
'+'
]
=
62
;
dtable
[
'/'
]
=
63
;
dtable
[
'='
]
=
0
;
...
...
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