From e522e54059fa08222b5fa3eecf886955b71fb9bb Mon Sep 17 00:00:00 2001 From: nanardon Date: Sat, 21 Jul 2007 02:00:27 +0000 Subject: - string: fix test, then fix the function git-svn-id: svn+ssh://haiku.zarb.org/home/projects/rpm4/svn/trunk@138 971eb68f-4bfb-0310-8326-d2484c010a4c --- RPM4/src/RPM4.xs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'RPM4/src/RPM4.xs') diff --git a/RPM4/src/RPM4.xs b/RPM4/src/RPM4.xs index 257e563..f03fdc0 100644 --- a/RPM4/src/RPM4.xs +++ b/RPM4/src/RPM4.xs @@ -995,14 +995,19 @@ Header_string(h, no_header_magic = 0) PREINIT: char * string = NULL; int offset = 8; /* header magic length */ - void * ptr = NULL; + char * ptr = NULL; int hsize = 0; PPCODE: hsize = headerSizeof(h, no_header_magic ? HEADER_MAGIC_NO : HEADER_MAGIC_YES); string = headerUnload(h); - ptr = string + (no_header_magic ? offset : 0); - XPUSHs(sv_2mortal(newSVpv((char *)ptr, hsize))); + if (! no_header_magic) { + ptr = malloc(hsize); + memcpy(ptr, header_magic, 8); + memcpy(ptr + 8, string, hsize - 8); + } + XPUSHs(sv_2mortal(newSVpv(ptr ? ptr : string, hsize))); free(string); + free(ptr); int Header_removetag(h, sv_tag) -- cgit v1.2.1