aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2009-01-20 22:46:48 +0000
committerKenny Root <kenny@the-b.org>2009-01-20 22:46:48 +0000
commit569080860fc43408b0c009508b7ad452120f1a6c (patch)
treeaa8b372bb22fd137f70b810349e7a04bd4166917
parent0e11054cdbf94c903cb060d42edb8cfe2badc15e (diff)
downloadsshlib-569080860fc43408b0c009508b7ad452120f1a6c.tar.gz
sshlib-569080860fc43408b0c009508b7ad452120f1a6c.tar.bz2
sshlib-569080860fc43408b0c009508b7ad452120f1a6c.zip
Bug scrub
* Try to be better about unsynchronized accesses * Don't expose references to arrays in our beans * Make sure we don't dereference null pointers * Update version string before calling aapt
-rw-r--r--lib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java b/lib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java
index 20d35cd..27b5f00 100644
--- a/lib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java
+++ b/lib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java
@@ -5,14 +5,12 @@ public class PacketSessionPtyResize {
public int recipientChannelID;
public boolean wantReply;
- public String term;
public int width;
public int height;
public PacketSessionPtyResize(int recipientChannelID, boolean wantReply, int width, int height) {
this.recipientChannelID = recipientChannelID;
this.wantReply = wantReply;
- this.term = term;
this.width = width;
this.height = height;
}