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

(-)cmdline/apt-get.cc.orig (-1 / +3 lines)
Lines 3446-3452 Link Here
3446
	 if (strstr(*I, "://") != NULL)
3446
	 if (strstr(*I, "://") != NULL)
3447
	 {
3447
	 {
3448
	    URLLst.push_back(*I);
3448
	    URLLst.push_back(*I);
3449
	    *I = strrchr(*I, '/')+1;
3449
	    const char *N = strdup(strrchr(*I, '/')+1);
3450
	    free((void *)*I);
3451
	    *I = N;
3450
	 }
3452
	 }
3451
      }
3453
      }
3452
3454

Return to bug 14929