jvgenmain.c (do_mangle_classname): End string constant with '\0'.

2001-03-28  Jeffrey Oldham  <oldham@codesourcery.com>

	* jvgenmain.c (do_mangle_classname): End string constant with '\0'.

From-SVN: r40936
This commit is contained in:
Jeffrey Oldham 2001-03-28 18:16:14 +00:00 committed by Jeffrey D. Oldham
parent 0ac19cfa6d
commit 0f5c1ee409
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-03-28 Jeffrey Oldham <oldham@codesourcery.com>
* jvgenmain.c (do_mangle_classname): End string constant with '\0'.
2001-03-28 Richard Henderson <rth@redhat.com>
IA-64 ABI Exception Handling:

View File

@ -168,5 +168,6 @@ do_mangle_classname (string)
}
append_gpp_mangled_name (&ptr [-count], count);
obstack_grow (mangle_obstack, "6class$E", 8);
obstack_1grow (mangle_obstack, '\0');
return obstack_finish (mangle_obstack);
}