Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
Libraries
asn1c
Commits
c2a75094
Commit
c2a75094
authored
Mar 14, 2006
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
class field access problem
parent
6ec10329
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
ChangeLog
ChangeLog
+4
-1
libasn1compiler/asn1c_misc.c
libasn1compiler/asn1c_misc.c
+3
-1
No files found.
ChangeLog
View file @
c2a75094
0.9.21: 2006-Mar-
09
0.9.21: 2006-Mar-
14
* skeletons/standard-modules directory is now used for standard types.
* Refactored system for parsing Information Object Classes.
* Fixed class field access problem (Test case 98)
(Severity: medim; Security impact: none)
0.9.20: 2006-Mar-06
...
...
@@ -476,6 +478,7 @@ SEVERITY.
SECURITY IMPACT.
This term applies to the amount of potential damage a bug exploitation
could cause.
none: No malicious exploitation is possible.
low: The local exploitation is unlikely; the remote exploitation
is impossible.
medium: The remote exploitation is possible when a particular ASN.1
...
...
libasn1compiler/asn1c_misc.c
View file @
c2a75094
...
...
@@ -131,6 +131,8 @@ asn1c_type_name(arg_t *arg, asn1p_expr_t *expr, enum tnfmt _format) {
while
(
top_parent
->
parent_expr
)
top_parent
=
top_parent
->
parent_expr
;
DEBUG
(
"asn1c_type_name(%s: 0x%x)"
,
expr
->
Identifier
,
expr
->
expr_type
);
switch
(
expr
->
expr_type
)
{
case
A1TC_REFERENCE
:
typename
=
expr
->
reference
->
components
[
...
...
@@ -144,7 +146,7 @@ asn1c_type_name(arg_t *arg, asn1p_expr_t *expr, enum tnfmt _format) {
*/
tmp
.
expr
=
asn1f_class_access_ex
(
arg
->
asn
,
arg
->
expr
->
module
,
arg
->
expr
,
expr
->
reference
);
if
(
tmp
.
expr
)
return
NULL
;
if
(
!
tmp
.
expr
)
return
NULL
;
return
asn1c_type_name
(
&
tmp
,
tmp
.
expr
,
_format
);
}
...
...
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