Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
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
Xiph.Org
aom-rav1e
Commits
3a1bd784
Commit
3a1bd784
authored
Jul 21, 2017
by
Thomas Daede
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove nonprinting characters when escaping JSON.
Change-Id: I41fe97db4cee333e601356253f28186ef4036237
parent
292c8e09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
examples/inspect.c
examples/inspect.c
+3
-1
No files found.
examples/inspect.c
View file @
3a1bd784
...
...
@@ -258,7 +258,9 @@ int put_str_with_escape(char *buffer, const char *str) {
int
i
;
int
j
=
0
;
for
(
i
=
0
;
str
[
i
]
!=
'\0'
;
i
++
)
{
if
(
str
[
i
]
==
'"'
||
str
[
i
]
==
'\\'
)
{
if
(
str
[
i
]
<
' '
)
{
continue
;
}
else
if
(
str
[
i
]
==
'"'
||
str
[
i
]
==
'\\'
)
{
buffer
[
j
++
]
=
'\\'
;
}
buffer
[
j
++
]
=
str
[
i
];
...
...
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