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
d8095522
Commit
d8095522
authored
Mar 18, 2005
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
better debugging
parent
1a447955
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
4 deletions
+37
-4
libasn1fix/asn1fix_retrieve.c
libasn1fix/asn1fix_retrieve.c
+37
-4
No files found.
libasn1fix/asn1fix_retrieve.c
View file @
d8095522
...
...
@@ -48,6 +48,13 @@ asn1f_lookup_in_imports(arg_t *arg, asn1p_module_t *mod, const char *name) {
*/
mod
=
asn1f_lookup_module
(
arg
,
xp
->
from
,
xp
->
from_oid
);
if
(
mod
==
NULL
)
{
/* Conditional debug */
if
(
!
(
arg
->
expr
->
_mark
&
TM_BROKEN
))
{
arg
->
expr
->
_mark
|=
TM_BROKEN
;
FATAL
(
"Cannot find module %s "
"mentioned for %s at line %d"
,
xp
->
from
,
name
,
arg
->
expr
->
_lineno
);
}
/* ENOENT/ETOOMANYREFS */
return
NULL
;
}
...
...
@@ -220,6 +227,7 @@ asn1f_lookup_symbol(arg_t *arg, asn1p_module_t *mod, asn1p_ref_t *ref) {
*/
if
(
imports_from
)
{
asn1p_ref_t
tmpref
=
*
ref
;
asn1p_expr_t
*
expr
;
if
(
modulename
)
{
/*
* The modulename is specified inside this reference.
...
...
@@ -230,7 +238,26 @@ asn1f_lookup_symbol(arg_t *arg, asn1p_module_t *mod, asn1p_ref_t *ref) {
tmpref
.
comp_count
--
;
assert
(
tmpref
.
comp_count
>
0
);
}
return
asn1f_lookup_symbol
(
arg
,
imports_from
,
&
tmpref
);
expr
=
asn1f_lookup_symbol
(
arg
,
imports_from
,
&
tmpref
);
if
(
!
expr
&&
!
(
arg
->
expr
->
_mark
&
TM_BROKEN
))
{
arg
->
expr
->
_mark
|=
TM_BROKEN
;
if
(
modulename
)
{
FATAL
(
"Module %s referred by %s in module %s "
"does not contain the requested symbol"
,
imports_from
->
Identifier
,
asn1f_printable_reference
(
ref
),
mod
->
Identifier
);
}
else
{
FATAL
(
"Module %s referred in IMPORTS section "
"for %s of module %s does not contain "
"the requested symbol"
,
imports_from
->
Identifier
,
asn1f_printable_reference
(
ref
),
mod
->
Identifier
);
}
}
return
expr
;
}
/*
...
...
@@ -316,7 +343,7 @@ asn1f_find_terminal_thing(arg_t *arg, asn1p_expr_t *expr, int type_or_value) {
}
/*
* Lookup inside the default module.
* Lookup inside the default module
and its IMPORTS section
.
*/
tc
=
asn1f_lookup_symbol
(
arg
,
expr
->
module
,
ref
);
if
(
tc
==
NULL
)
{
...
...
@@ -367,8 +394,14 @@ asn1f_compatible_with_exports(arg_t *arg, asn1p_module_t *mod, const char *name)
return
0
;
}
DEBUG
(
"Symbol
\"
%s
\"
contradicts with EXPORTS of module %s"
,
name
,
mod
->
Identifier
);
/* Conditional debug */
if
(
!
(
arg
->
expr
->
_mark
&
TM_BROKEN
))
{
arg
->
expr
->
_mark
|=
TM_BROKEN
;
FATAL
(
"EXPORTS section of module %s in %s "
"does not mention %s at line %d"
,
mod
->
Identifier
,
mod
->
source_file_name
,
name
,
arg
->
expr
->
_lineno
);
}
errno
=
ESRCH
;
return
-
1
;
...
...
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