Index: /trunk/src/org/openstreetmap/josm/actions/PasteAction.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/actions/PasteAction.java	(revision 5095)
+++ /trunk/src/org/openstreetmap/josm/actions/PasteAction.java	(revision 5096)
@@ -52,10 +52,12 @@
             if (data instanceof NodeData) {
                 NodeData n = (NodeData)data;
-                double east = n.getEastNorth().east();
-                double north = n.getEastNorth().north();
-                if (east > maxEast) { maxEast = east; }
-                if (east < minEast) { minEast = east; }
-                if (north > maxNorth) { maxNorth = north; }
-                if (north < minNorth) { minNorth = north; }
+                if (n.getEastNorth() != null) {
+                    double east = n.getEastNorth().east();
+                    double north = n.getEastNorth().north();
+                    if (east > maxEast) { maxEast = east; }
+                    if (east < minEast) { minEast = east; }
+                    if (north > maxNorth) { maxNorth = north; }
+                    if (north < minNorth) { minNorth = north; }
+                }
             }
             if (data.isIncomplete()) {
