Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asn1c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
asn1c
Commits
c2a75094
Commit
c2a75094
authored
19 years ago
by
Lev Walkin
Browse files
Options
Downloads
Patches
Plain Diff
class field access problem
parent
6ec10329
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+4
-1
4 additions, 1 deletion
ChangeLog
libasn1compiler/asn1c_misc.c
+3
-1
3 additions, 1 deletion
libasn1compiler/asn1c_misc.c
with
7 additions
and
2 deletions
ChangeLog
+
4
−
1
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
...
...
This diff is collapsed.
Click to expand it.
libasn1compiler/asn1c_misc.c
+
3
−
1
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
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment