You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
256 B
12 lines
256 B
9 years ago
|
--- a/libopkg/opkg_download.c
|
||
|
+++ b/libopkg/opkg_download.c
|
||
|
@@ -335,7 +335,7 @@ opkg_prepare_url_for_install(const char
|
||
|
hash_insert_pkg(pkg, 1);
|
||
|
|
||
|
if (namep) {
|
||
|
- *namep = pkg->name;
|
||
|
+ *namep = xstrdup(pkg->name);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|