View | Details | Raw Unified | Return to bug 54337
Collapse All | Expand All

(-)jmp/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	jmp
8
PORTNAME=	jmp
9
PORTVERSION=	0.31
9
PORTVERSION=	0.32
10
CATEGORIES=	java devel
10
CATEGORIES=	java devel
11
MASTER_SITES=	http://www.khelekore.org/jmp/
11
MASTER_SITES=	http://www.khelekore.org/jmp/
12
12
(-)jmp/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (jmp-0.31.tar.gz) = 084dc5304e1fe720bde56ae987f0d085
1
MD5 (jmp-0.32.tar.gz) = b3323988c6227104332087bb797e9802
(-)jmp/files/patch-hash.c (-13 lines)
Lines 1-13 Link Here
1
$FreeBSD: ports/java/jmp/files/patch-hash.c,v 1.1 2003/06/29 09:07:24 olgeni Exp $
2
3
--- hash.c	Thu Jun 26 16:23:50 2003
4
+++ hash.c	Thu Jun 26 16:23:20 2003
5
@@ -1,7 +1,7 @@
6
 /* Handle a hash table.
7
  */
8
 
9
-#include <malloc.h>
10
+#include <stdlib.h>
11
 #include <jmp.h>
12
 
13
 struct hashnode
(-)jmp/files/patch-heap_dump.c (+20 lines)
Line 0 Link Here
1
$FreeBSD$
2
3
--- heap_dump.c	Thu Jul 10 21:13:54 2003
4
+++ heap_dump.c	Thu Jul 10 23:07:57 2003
5
@@ -741,6 +741,7 @@
6
 	case JVMPI_CHAR: {
7
 	    char* txt = malloc (sizeof(unsigned short) * (u4 + 1));
8
 	    char* otxt = txt;
9
+	    down_link* dl;
10
 	    for (i = 0; i < u4; i++) {
11
 		// TODO fix this to get real utf8 encoding...
12
 		unsigned short u2 = get_u2 (&p);
13
@@ -752,7 +753,6 @@
14
 		}
15
 	    }
16
 	    *txt = '\0';
17
-	    down_link* dl;
18
 	    dl = malloc (sizeof (*dl));
19
 	    dl->type = JVMPI_GC_PRIM_ARRAY_DUMP;
20
 	    dl->fld = NULL;

Return to bug 54337