[svn:parrot] r46279 - trunk/src/packfile
bacek at svn.parrot.org
bacek at svn.parrot.org
Tue May 4 12:08:23 UTC 2010
Author: bacek
Date: Tue May 4 12:08:23 2010
New Revision: 46279
URL: https://trac.parrot.org/parrot/changeset/46279
Log:
Remove PObj_external_FLAG from PF_fetch_string. This assumption not always hold.
Modified:
trunk/src/packfile/pf_items.c
Modified: trunk/src/packfile/pf_items.c
==============================================================================
--- trunk/src/packfile/pf_items.c Tue May 4 10:28:25 2010 (r46278)
+++ trunk/src/packfile/pf_items.c Tue May 4 12:08:23 2010 (r46279)
@@ -1237,7 +1237,7 @@
TRACE_PRINTF(("size=%ld.\n", size));
s = string_make_from_charset(interp, (const char *)*cursor,
- size, charset_nr, flags | PObj_external_FLAG);
+ size, charset_nr, flags);
/* print only printable characters */
TRACE_PRINTF_VAL(("PF_fetch_string(): string is '%s' at 0x%x\n",
More information about the parrot-commits
mailing list