diff options
author | dscho <dscho> | 2001-10-11 15:44:58 +0000 |
---|---|---|
committer | dscho <dscho> | 2001-10-11 15:44:58 +0000 |
commit | 67094d7c281993497decb1459ea1663765a760eb (patch) | |
tree | 6317d81c1ddca58b5e3b8e1556ae9b904e0d160b /sraRegion.c | |
parent | 519a8e0e399bf44893f2d61a3676f3257ab8d201 (diff) | |
download | libtdevnc-67094d7c281993497decb1459ea1663765a760eb.tar.gz libtdevnc-67094d7c281993497decb1459ea1663765a760eb.zip |
replaced xalloc with malloc functions, udp input support (untested), fixed http
Diffstat (limited to 'sraRegion.c')
-rwxr-xr-x | sraRegion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sraRegion.c b/sraRegion.c index 4d52086..a70d521 100755 --- a/sraRegion.c +++ b/sraRegion.c @@ -76,7 +76,7 @@ sraSpanRemove(sraSpan *span) { void
sraSpanDestroy(sraSpan *span) {
if (span->subspan) sraSpanListDestroy(span->subspan);
- xfree(span);
+ free(span);
}
void
@@ -153,7 +153,7 @@ sraSpanListDestroy(sraSpanList *list) { sraSpanDestroy(curr);
curr = next;
}
- xfree(list);
+ free(list);
}
void
|